* * * * * /usr/bin/PHP /full/path/to/script.PHP arg1 arg2 > /full/path/to/logfile.log
脚本运行并访问参数很好,但结果不会打印到logfile.log.另外,我的logfile.log是chmod 777,所以我知道它有写访问权限.
你可以修改我的语法吗?
* * * * * cd /path/to/script.PHP ; ./script.PHP arg1 arg2 >> logfile.log
然后在/ path / to / script文件夹中查找你的日志文件.它也可以是写权限问题.另外,检查您的脚本是否有错误.您的crontab命令似乎可以.