如何每天更新一次

时间:2014-11-01 13:26:31

标签: php

我想每天更新一次example_homepage.html,怎么样?

    <?php

$ch = curl_init("http://rss.news.yahoo.com/rss/oddlyenough");
$fp = fopen("example_homepage.html", "w");

curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_HEADER, 0);

curl_exec($ch);
curl_close($ch);
fclose($fp);

$xml = simplexml_load_file('example_homepage.html');
print "<ul>\n";
foreach ($xml->channel->item as $item){
  print "<li>$item->title</li>\n";
}
print "</ul>";

?>

你知道我的意思吗?这个页面很慢,所以我想每天更新一次example_homepage.html。但我不知道怎么办?

1 个答案:

答案 0 :(得分:0)

您可以在Linux环境中使用cron选项卡 了解更多信息 https://help.ubuntu.com/community/CronHowto

或者您可以使用第三方cron服务 喜欢 http://cronless.com/