如何设置 Cron 脚本每天运行

发布于 2024-11-18 19:03:58 字数 180 浏览 3 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

感悟人生的甜 2024-11-25 19:03:58

您可以通过 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 typing php filename.php (mayber after installing php5-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.

煮酒 2024-11-25 19:03:58

在服务器 (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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文