Is it possible with cron tab(job) to run .php
script every sunday at 0:01h till 23:59h? The main idea is at Sunday 0:01h to run this script which will place some text on the websait. This text will stay there for 24 hours and at 23:59h to stop the script and hide the text?
Any ideas how can do this?

Cron工作运行一个PHP脚本24小时然后停止它
- 写回答
- 好问题 0 提建议
- 关注问题
- 邀请回答
-
1条回答 默认 最新
- doupao3662 2014-11-08 16:14关注
1 0 * * 0 /usr/bin/php myScriptThatCreatesContent.php 59 23 * * 0 /usr/bin/php myScriptThatRemovesContent.php
See Cron format reference here, taking into account that most implementations only use 5 fields (year not supported).
The formats above specify minutes and hour and day-of-week, which can occur on any day of month in any month (the 2 stars). The 0 at the end is the first day of the week, which is Sunday for crons.
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报