开发者

Cron job question

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

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜