0
我從內容爲動態的xml文件(file.xml)加載數據,但問題是表格中的內容相同,但我在文件中看到內容更改。就好像加載完成一次。我的表格中的內容沒有更改
請幫忙。
謝謝
的代碼和平:(對不起,如果你發現我的代碼有問題)
window.setInterval(function() {
<?php
$xml = simplexml_load_file("file.xml");
foreach($xml as $node)
{
$name = "";
$value = -1;
foreach($node->attributes() as $a => $b) {
if($a == "name")
{
$name = (string)$b;
}
else if($a == "value")
{
$value = (string)$b;
}
}
$vars[$name] = $value;
}
$json = json_encode($vars);
?>
//// code to show the result in my table
}, 1000);