我写了一个php文件来更新页面。
这是一些代码
<?php
require_once('./global.php');
Eventlist();
function Eventlist() {
$line = 'some text';
$myFile = "utf8_event.html";
$fh = fopen($myFile, 'w') or die("can't open file");
fwrite($fh, $line);
fclose($fh);
return true;
}
?>
如果我像http://www.abc.com/script.php那样运行它,它会更新文件。
但是,如果我将其添加到计划任务中,则无效。我试图手动运行它。它不会更改文件。