Using crontab to execute script every minute and another every 24 hours
我需要一个crontab语法,它应该每分钟执行一个特定的php脚本
每一分钟:
每24小时(每午夜):
有关crontab的工作原理,请参阅以下参考:http://adminschoice.com/crontab-quick-reference,以及构建cron jobx的简便工具:http://www.htmlbasix.com/crontab.shtml
这是/etc/crontab的格式:
1 2 3 4 5 6 7 | # .---------------- 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系统以这种方式设置。
每分钟运行一次:
1 | * * * * * username /var/www/html/a.php |
每天午夜运行某物:
1 | 0 0 * * * username /var/www/html/reset.php |
可以在要运行的命令中包含/usr/bin/php,也可以使php脚本直接执行:
1 | chmod +x file.php |
用shebang启动php文件,这样shell就知道要使用哪个解释器:
1 2 3 | #!/usr/bin/php <?php // your code here |