我想知道如何检测页面何时使用PHP更新。我在Google上研究了一些东西,但没有任何结果。
我想要做的是在页面更新时调用特定的函数。我将运行一个cron作业来运行代码。
我想要这样的事情:
$contents = file_get_contents('example.com/page');
$Pupdate = file_get_contents('pageupdate.txt');
if ($Pupdate == ($pageUpdate = $contents)) {
// the content is the same
} else {
// the page has been updated, do whatever you need to do
// and store the new updated content only in the file
$fp = fopen('pageupdate.txt', 'w');
fwrite($fp, $pageUpdate);
fclose($fp);
}
如果我不能做那样的话,那么我想至少知道如何检测页面何时在txt中更新并且只返回PHP的更新结果。
请帮助,谢谢!
答案 0 :(得分:0)
如果您使用cron运行脚本,是否可以检查自上次运行脚本以来文件是否已更新?