0

这可能是重复。
我想每隔几分钟运行一次 index.php。我的服务器有选项运行 cron 命令/ cron 作业。有人请告诉我我应该用什么来安排。
提前致谢。

4

3 回答 3

1

首先,为什么

其次,crontab -e将允许您编辑您的 crontab。然后就很简单了

? * * * * php /path/to/index.php
于 2012-07-11T07:27:56.690 回答
1

你可以使用这个命令

Minutes Hours  Day  Month WeekDay
45      *      *    *     *        php /path/to/index.php *

这是一篇关于 php cron manager的文章

于 2012-07-11T07:30:17.103 回答
0

首先,这是 cron 的工作原理:

http://en.wikipedia.org/wiki/Cron

然后,该命令应如下所示:

* * * * * cd /directory/of/the/script/ && php scriptname.php >> /directory/of/the/logfile.log

于 2012-07-11T07:28:18.330 回答