开发者

Cron job question

开发者 https://www.devze.com 2023-03-29 03:24 出处:网络
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.

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 th开发者_C百科e right direction?

Thank you


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             


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
0

精彩评论

暂无评论...
验证码 换一张
取 消