Home >Backend Development >PHP Tutorial >怎么实现linux整点和半点执行任务

怎么实现linux整点和半点执行任务

WBOY
WBOYOriginal
2016-06-23 13:21:292306browse

请问linux的 crontab -e  怎么设置整点和半点执行任务呢?
就是要每隔半个小时执行任务一次 整点的 例如11点 和11点半执行任务 求大神代码实例


回复讨论(解决方案)

*/30 * * * * 任务

*/30 * * * * 任务


大神,如果现在是9点15分,那我怎么实现9点半执行一次,10点也执行一次之后每隔半小时到整点又执行呢

*/30 * * * * curl http://www.xxx.com/控制器/方法名


这就是每30分钟 执行一次 这个地址的请求,也就是实现执行方法
对着呢

不用纠结 那15分钟啊

那你就定时 任务
或写好cron, 当date到的时候, 开启,也能准时准点儿

 最简单粗暴的方法是,定时器一分钟运行一次,然后脚本判断时间是否执行

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:想PHP,请关照Next article:php验证码封装