该脚本在几周内运行良好,然后无缘无故停止工作。
1.<?php
2.ob_start();
3.include "weather xml website";
4.$data=ob_get_contents();
5.ob_clean();
6.
7.$xmlFile = 'filelocation\weatherData.xml';
8.
9.
10.$fh = fopen($xmlFile, 'w') or die("can not create or open $xmlFile");
11.
12.fwrite($fh, $data);
13.fclose($fh);
14.?>
我使用了 Google 和 Msn 的天气 API,我可以通过浏览很好地接收 xml 数据,文件处理程序可以创建和编辑本地 xml。我将此脚本设置为每 30 分钟运行一次的计划任务。
我应该使用另一种方法吗?缓存?任何帮助将不胜感激