如何设置 Cron 脚本每天运行
我有一个 PHP 文件,我想每天运行一次。我知道为了做到这一点,我需要设置一个 CRON 作业。根据我的理解,应该有一种方法可以在我的网络主机中设置 CRON 作业,但我不知道它位于哪里。我看到的有关 CRON 作业的所有内容都与从我的本地计算机运行它有关。这里缺少什么链接?如何格式化文件名?以及有关如何完成此操作的任何其他相关信息将不胜感激。
I have a PHP file that I would like to run once per day. I know that in order to do this I need to set up a CRON job. From my understanding there should be a way to set-up the CRON job within my web host, but I do not know where this is located. Everything I see about the CRON job has to do with running it from my local computer. What is the missing link here? How do I format the filename? And any other pertinent information on how this is done would be greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以通过 SSH 登录您的网络服务器吗?如果是这样,请输入 crontab -e ,然后您可以编辑 crontab 文件。您可以通过输入
php filename.php
来运行脚本(可能在先安装php5-cli
之后)。我不知道你有什么样的网络服务器。如果你没有终端访问权限,那么你必须查看你的提供商是否支持 CRON Jobs(然后他必须对其进行设置),否则就不可能这样做。
Can you login via SSH to your webserver? If so, type
crontab -e
and there you can edit your crontab file. You can run the script by typingphp filename.php
(mayber after installingphp5-cli
first).I don't know what kind of webserver you have. If you have no terminal access, then you have to look if your provider supports CRON Jobs (then he has to set it up), otherwise there is no possibility to do that.
在服务器 (ssh) 上键入 crontab -e
模式:
* * * * * 职位
说明:
分钟(0-59) 小时(0-23) 月日(1-31) 月(1-12) 周日(0-6, 0 - 星期日)
每天午夜:
0 0 * * * 工作
On server (ssh) type crontab -e
Pattern:
* * * * * job
Explanation:
Min(0-59) Hour(0-23) DayOfMonth(1-31) Month(1-12) DayOfWeek(0-6, 0 - Sunday)
Every day in midnight:
0 0 * * * job