Rumah > Artikel > pembangunan bahagian belakang > linux解决PHP定时器问题的方法代码
本文主要和大家分享linux解决PHP定时器问题的方法代码,PHP是往往是被动执行,用户发送http请求,服务器收到请求则执行,他很难主动去做某些事情。对于PHP这种没有定时器,或者是定时器很弱的语言,linux计划任务应该果断用起来。
思路就是计划任务,根据设定时间执行CURL命令,还是发送http请求,既然你PHP喜欢被动,让你被动到底。
1.建立计划任务
[root@izbp17kcgwxvwveyk6c15dz ~]# crontab -e crontab: installing new crontab [root@izbp17kcgwxvwveyk6c15dz ~]# crontab -l 1 1 1 * * /phpstudy/mycurl.sh 1,11,21,31,41,51 1,2,3,4 1 * * /phpstudy/mycurldepot.sh 5,35 * * * * /phpstudy/mycurlAutoCheck.sh [root@izbp17kcgwxvwveyk6c15dz ~]#
编辑任务 crontab -e
查看当前任务 crontab -l
详细命令:点击打开链接
2.SH文件CURL命令
curl http://127.0.0.1/autocheck.php
3.具体业务逻辑
在PHP中执行
相关推荐:
Atas ialah kandungan terperinci linux解决PHP定时器问题的方法代码. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!