本篇文章介紹了使用ThinkPHP實現定時任務的方法,和cron實現定時任務的方法,希望對學習thinkphp的朋友有幫助!
#ThinkPHP實作定時任務案例
定時任務常見的是Linux中的crontab定時任務,這種是透過編寫腳本來執行的,它會在後台一直循環執行。但是有時候我們沒有伺服器權限或是說我們沒有獨立的伺服器,那又該怎麼辦?其實,定時任務還有一種就是被動是,只要存取專案就會觸發,被動式定時任務一般用於虛擬主機,因為沒有伺服器權限我們只能透過程式碼來實現。以下我們以thinkPHP為例來分析這兩種定時任務的差異。
(推薦教學:thinkphp教學)
無動式定時任務
①、tags.php
######################################################## #在/Application/Common/Conf目錄下新建tags.php檔案。 (此和方法一處一樣)###
<?php return array( //'配置项'=>'配置值' 'app_begin' =>array('Behavior\CronRunBehavior'), );
<?php return array( //myplan为我们计划定时执行的方法文件,2是间隔时间,nextruntime下次执行时间 //此文件位于/Application/Cron/目录下 'cron' => array('myplan', 2, nextruntime), );
<?php echo date("Y-m-d H:i:s")."执行定时任务!" . "\r\n<br>";
<?php return array ( 'cron' => array ( 0 => 'myplan', 1 => 2, 2 => 1502089802, ), ); ?>
[root@iZwz924w5t4862mn4tgcyqZ ~]# crontab -e */1 * * * * /usr/local/php/bin/php /data/wwwroot/door/test.php//执行PHP文件 */1 * * * * /usr/bin/curl http://www.100txy.com/wechatapi.php//访问url
<?php $txt = "/data/wwwroot/door/test.txt"; // die(var_dump($txt)); $date=date('Y-m-d H:i:s',time()); $content = file_get_contents($txt); if($content!=''){ $arr=explode('#',$content); $num=$arr['1']+1; $string=$date.'#'.$num; }else{ $string=$date.'#'.'1'; } file_put_contents($txt,$string); $content_last = file_get_contents($txt); return $content_last;
[root@iZwz924w5t4862mn4tgcyqZ ~]# tail -f /data/wwwroot/door/test.txt
以上是ThinkPHP實作定時任務案例的詳細內容。更多資訊請關注PHP中文網其他相關文章!