在div#weather内部,我有一些 PHP 正在调用 Google 的天气 XML。它工作得很好,除了它变得陈旧。我想每 600000 毫秒重新加载一次 div 以获得新的 XML。
我正在使用 javascript 计时器的路径,但这似乎需要一个外部 URL。
如果我需要将 PHP 放在一个外部文件中,这没什么大不了的,只是不理想。
<div id="weather">
<?php
$URL = "http://www.google.com/ig/api?weather=60618";
$dataInISO = file_get_contents($URL);
$dataInUTF = mb_convert_encoding($dataInISO, "UTF-8", "ISO-8859-2");
$xml = simplexml_load_string($dataInUTF);
$current = $xml->xpath("/xml_api_reply/weather/current_conditions");
?>
<div class="weather-<?php $weather = $current[0]->condition['data']; $weatherclass = str_replace(' ','-',$weather); $weatherclass = strtolower($weatherclass); echo $weatherclass; ?>"> </div>
<div id="temp"><?= $current[0]->temp_f['data'] ?>°</div>
<div id="condition"><?= $current[0]->condition['data'] ?></div>
</div>