Heim> php教程> php手册> Hauptteil

论linux下计划任务

WBOY
Freigeben: 2016-09-30 09:22:54
Original
1395 Leute haben es durchsucht

论linux下计划任务完成订单自动收货,自动评价的功能!
小伙伴们,平时做程序开发的时候,是否也曾为实现一个商城网站或者一个小程序自动执行某个方法而苦恼呢?

今天思梦php就给大家带了这个解决的方案,当然这个有很多种的方法去实现,而今天小编给大家讲解是配置Linux下crontab进行设置!好了下面就教大家来进行这个操作的介绍了!

首先呢,要和大家说明一下,小编给大家讲解的是Linux下实现这个操作,至于Windows的话,后期也可以为大家讲解!

(1)我们要用yum install -y vixie-cron这个命令进行安装计划任务服务,小伙伴们可以在安装之前使用crontab -e进行检测一下,服务器是否安装了这个服务!

(2)安装之后呢,我们使用crontab -e 就可以添加我们的计划任务了,我给大家书写一些小例子:

*/1 * * * * /usr/bin/curl -o temp.txt http://www.baidu.com/index.php/Api/Contab/offeredCoupon

每分钟执行以下Api 分组下面的offeredCoupon方法

30 21 * * * /usr/bin/curl -o temp.txt http://www.baidu.com/index.php/Api/Contab/offeredCoupon

上面的例子表示每晚的21:30执行以下Api 分组下面的offeredCoupon方法

45 4 1,10,22 * */usr/bin/curl -o temp.txt http://www.baidu.com/index.php/Api/Contab/offeredCoupon

上面的例子表示每月1、10、22日的4 : 45执行以下Api 分组下面的offeredCoupon方法

10 1 * * 6,0 /usr/bin/curl -o temp.txt http://www.baidu.com/index.php/Api/Contab/offeredCoupon

上面的例子表示每周六、周日的1 : 10执行以下Api 分组下面的offeredCoupon方法

注意(下面是对上面的解释):

*  *  *  *  *  command

分 时  日  月  周  命令

第1列表示分钟1~59 每分钟用*或者 */1表示

第2列表示小时1~23(0表示0点)

第3列表示日期1~31

第4列表示月份1~12

第5列标识号星期0~6(0表示星期天)

第6列要运行的命令

(3)编好文件之后,按ESC键,之后(:wq)保存退出

(4)service crond restart 重启计划任务

以上就是Linux定时任务的配置方式,当然了我们为了我们看到直观的效果,我们可以先用PHP的函数file_put_contents("1.txt","Linux定时任务测试");这样来测试我们的方法是否执行了!

Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Empfehlungen
    Neueste Downloads
    Mehr>
    Web-Effekte
    Quellcode der Website
    Website-Materialien
    Frontend-Vorlage
    Über uns Haftungsausschluss Sitemap
    Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!