我需要一个crontab语法,它应该每分钟执行一个特定的PHP脚本/var/www/html/a.p PHP。每分钟的执行必须从00:00开始执行。另一个任务必须在00:00 /var/www/html/reset.php执行一个脚本(每24小时执行一次)。
每一分钟:
* * * * /路径/to/php /var/www/html/a.php
每24小时(每午夜):
0 0 * * * /path/to/php /var/www/html/reset.php
有关crontab如何工作的参考资料:http://adminschoice.com/crontab-quick-reference,以及构建cron jobx的方便工具:http://www.htmlbasix.com/crontab.shtml
这是/etc/crontab的格式:
# .---------------- minute (0 - 59)
# | .------------- hour (0 - 23)
# | | .---------- day of month (1 - 31)
# | | | .------- month (1 - 12) OR jan,feb,mar,apr ...
# | | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
# | | | | |
# * * * * * user-name command to be executed
我建议将其复制并粘贴到crontab文件的顶部,这样就可以随时使用引用。RedHat系统默认是这样设置的。
每分钟运行一次:
* * * * * username /var/www/html/a.php
每天午夜运行某事:
0 0 * * * username /var/www/html/reset.php
你可以在运行命令中包含/usr/bin/php,或者你可以让php脚本直接可执行:
chmod +x file.php
用shebang启动你的php文件,这样你的shell就知道要使用哪个解释器:
#!/usr/bin/php
<?php
// your code here