使用crontab每分钟执行一次脚本,每24小时执行一次脚本

使用crontab每分钟执行一次脚本,每24小时执行一次脚本

我需要一个crontab语法,它应该/var/www/html/a.php每分钟执行一个特定的PHP脚本。每分钟的执行必须从00:00开始。另一个必须在00:00执行脚本的任务/var/www/html/reset.php(每24小时一次)。



jeck猫
浏览 21216回答 2
2回答

开满天机

这是/ etc / crontab的格式:# .---------------- minute (0 - 59)# |&nbsp; .------------- hour (0 - 23)# |&nbsp; |&nbsp; .---------- day of month (1 - 31)# |&nbsp; |&nbsp; |&nbsp; .------- month (1 - 12) OR jan,feb,mar,apr ...# |&nbsp; |&nbsp; |&nbsp; |&nbsp; .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat# |&nbsp; |&nbsp; |&nbsp; |&nbsp; |# *&nbsp; *&nbsp; *&nbsp; *&nbsp; * user-name&nbsp; 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
打开App,查看更多内容
随时随地看视频慕课网APP