Ubuntu停使用crontab执行php代码
程序员文章站
2022-05-01 16:54:08
...
Ubuntu下使用crontab执行php代码
wangking写道
在网站开发中难免会遇到定时执行php代码,php不像java那样有定时器,所以只能用crontab来替代。
?
? ? 编辑crontab文件可以看到具体书写规范,很方便(vim /etc/crontab):
?
? ? ?如下为书写规范:
# m h dom mon dow user command17 * * * * root cd / && run-parts --report /etc/cron.hourly25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )47 6 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )52 6 1 * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )#
?
? ? 那么我要每分钟执行我的php代码,可以按照规范那样书写:
? ??
*/1 * * * * root wget -q -O /dev/null http://www.rewufeng.com/
?
? ? 每天执行php代码则为:
59 23 * * * root wget -q -O /dev/null http://www.rewufeng.com/
?
? ? 另crontab的详细书写规范可参考:http://hi.baidu.com/michaelxdt/item/a8e4fec22a59867388ad9e62
?
? ? 搞定,结束。
?
?
相关文章
相关视频
专题推荐
-
独孤九贱-php全栈开发教程
全栈 170W+
主讲:Peter-Zhu 轻松幽默、简短易学,非常适合PHP学习入门
-
玉女心经-web前端开发教程
入门 80W+
主讲:灭绝师太 由浅入深、明快简洁,非常适合前端学习入门
-
天龙八部-实战开发教程
实战 120W+
主讲:西门大官人 思路清晰、严谨规范,适合有一定web编程基础学习
- 最新文章
- 热门排行
上一篇: 深入了解python文件读写操作的方法
下一篇: PHP不点击按钮post并跳转
推荐阅读
-
Ubuntu停使用crontab执行php代码
-
Ubuntu系统下用Crontab命令定时执行PHP文件详解
-
如何使用Linux的Crontab定时执行PHP脚本的方法
-
php使用microtime(true)计算php程序代码执行消耗时间
-
php使用microtime(true)计算php程序代码执行消耗时间
-
使用Linux的Crontab定时执行PHP脚本
-
linux使用crontab实现PHP执行计划定时任务
-
Linux环境使用crontab命令设置定时周期性执行任务【含php执行代码】
-
如何使用Linux的Crontab定时执行PHP脚本的方法_PHP
-
Ubuntu停使用crontab执行php代码
网友评论
文明上网理性发言,请遵守 新闻评论服务协议
我要评论