cron作业问题
我想在上午 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 crontab 中尝试以下三行
Try the following three lines in crontab
每 10 分钟从 cron 运行一次,检查 PHP 中的日期,如果超出范围则不执行任何操作。
Run it from cron in every 10 minutes, check th date in PHP do nothing if it's outside the range.
您可以在基于 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!