我刚开始使用cron job。我甚至不知道如何写它。 我想每小时写一次test.php。 我的操作系统是Windows 7。 我的test.php:
$f=fopen('file.txt','a');
...
fwrite($f,$str);
我想每小时运行一次。
我试着在我的cmd中写道:
0 * * * * E:/xampp/php E:/xampp/htdocs/cron/test.php &> /dev/nul
但我得到语法错误。 有谁能够帮我?我必须在哪里写这个命令?有什么问题?
谢谢!