在一个时间范围内多次运行PHP crone

时间:2014-06-18 10:32:08

标签: php linux cron

我有一个PHP cron工作,我需要在晚上10点到晚上11点之间运行10次 是否可以在我的服务器

/usr/local/bin/php -q /home/geniusgr/public_html/cron.php 

1 个答案:

答案 0 :(得分:1)

你可以使用这个cron:

*/6 22 * * * /usr/local/bin/php -q /home/geniusgr/public_html/cron.php

它将在22(晚上10点)每6分钟运行一次:

22.00 -  1st
22.06 -  2nd
22.12 -  3rd
22.18 -  4th
22.24 -  5th
22.30 -  6th
22.36 -  7th
22.42 -  8th
22.48 -  9th
22.54 - 10th