cron作业问题

发布于 2024-11-30 08:53:35 字数 118 浏览 3 评论 0原文

我想在上午 9:30 到下午 4:00 之间每 10 分钟运行一个 php 脚本,

我在询问之前用谷歌搜索过,但没有成功。

有人知道该怎么做吗?或者为我指明正确的方向?

谢谢

I want to run a php script every 10 minutes, between the hours of 9:30AM - 4:00PM

I googled before asking, and didn't have any success.

Anyone know how to do this? Or point me in the right direction?

Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

紫南 2024-12-07 08:53:35

在 crontab 中尝试以下三行

0,10,20,30,40,50      10-15                    * * * # Every 10 minutes for the hours 10am - 3pm
0                     16                       * * * # 4pm
30,40,50              9                        * * * # and 9:30, 9:40, 9:50             

Try the following three lines in crontab

0,10,20,30,40,50      10-15                    * * * # Every 10 minutes for the hours 10am - 3pm
0                     16                       * * * # 4pm
30,40,50              9                        * * * # and 9:30, 9:40, 9:50             
橘香 2024-12-07 08:53:35

每 10 分钟从 cron 运行一次,检查 PHP 中的日期,如果超出范围则不执行任何操作。

*/10 * * * * /usr/bin/php  /path/to/your/script.php

Run it from cron in every 10 minutes, check th date in PHP do nothing if it's outside the range.

*/10 * * * * /usr/bin/php  /path/to/your/script.php
酒与心事 2024-12-07 08:53:35

您可以在基于 Unix 的系统上使用 cron 作业或在 Windows 上使用计划任务定期运行 PHP 脚本。
对于 Unix 系统,您可以编辑 crontab (crontab -e) 并添加一行,如 */10 9-16 * * * php /path/to/your/script.php 在 9:30 之间每 10 分钟运行一次脚本上午和下午 4:00。
在 Windows 上,使用任务计划程序创建具有类似设置的计划任务。尝试一下!

You can run a PHP script periodically using cron jobs on Unix-based systems or scheduled tasks on Windows.
For Unix systems, you can edit your crontab (crontab -e) and add a line like */10 9-16 * * * php /path/to/your/script.php to run your script every 10 minutes between 9:30 AM and 4:00 PM.
On Windows, use Task Scheduler to create a scheduled task with similar settings. Give it a try!

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