php計劃任務很多人都不知道是什麼,但是我們在日常開發中,我們的php程式很多的時候都需要執行任務計劃,定時執行,那麼今天我們今天就給大家介紹下php規劃任務的實作原理分析!
根據php手冊簡單介紹一些相關的知識:
#1. 連結處理:
在PHP 內部,系統維護連線狀態,其狀態有三種可能的情況:
0 - NORMAL(正常)
1 - ABORTED(異常退出)
2 - TIMEOUT(超時)
ignore_user_abort 或由
Apache .conf 設定中對應的"
php_value ignore_user_abort"以及
ignore_user_abort() 函數來控制。
max_execution_time 或
Apache .conf 設定中對應的"
php_value max_execution_time"參數或
set_time_limit() 函數來更改。
connection_status() 函數來檢查逾時是否導致關閉觸發函數被呼叫。
ABORTED 和
TIMEOUT 狀態可以同時有效。
2.相關函數:
int ignore_user_abort ( [bool setting] ) This function sets whether a client disconnect should cause a script to be aborted. It will return the previous setting and can be called without an argument to not change the current setting and only return the current setting. int connection_aborted ( void ) Returns TRUE if client disconnected. int connection_status ( void ) Returns the connection status bitfield.
ignore_user_abort() 和
crontab
函數搭配set_time_limit(0)
和sleep($interval)
即可實作程式自動執行更新,以下是一個實例
程式碼如下:
ignore_user_abort(); //即使Client断开(如关掉浏览器),PHP脚本也可以继续执行. set_time_limit(0); // 执行时间为无限制,php默认的执行时间是30秒,通过set_time_limit(0)可以让程序无限制的执行下去 $interval=60*5; // 每隔5分钟运行 do{ $fp = fopen('test.txt','a'); fwrite($fp,'test'); fclose($fp); sleep($interval); // 等待5分钟 }while(true);
只要執行上面的頁面,然後關掉,程式就會一直運作下去。
crontab指令的功能是在一定的時間間隔調度一些指令的執行。
crontab 使用方法:
* * * * * Command
crontab的範例:
*/5 * * * * lynx http://www.php.cn
0 8 * * * lynx http://www.php.cn
0 10 6 * 1-5 lynx http://www.php.cn
0 5 7 8 * lynx http://www.php.cn
"*"代表所有的取值範圍內的數字,"/"代表每的意思,"*/ 5"表示每5個單位,"-"代表從某個數字到某個數字,","分開幾個離散的數字。
總結:相信透過這篇文章的學習,許多小夥伴都應該知道了php計畫任務的實作原理是什麼了,希望對你的工作有幫助!
相關推薦:
###########php定時排程任務#########以上是php實作規劃任務的原理分析的詳細內容。更多資訊請關注PHP中文網其他相關文章!