php也是可以直接進行守護進程的啟動與終止的,相對於shell來說會簡單很多,理解更方便,當然了php的守護進程要實現自動重啟還是要依賴於shell的crontab日程表,每隔一段時間去執行一次腳本看腳本是否需要重啟,如果需要則殺掉進程刪除RunFile文件,重新啟動並在RunFile文件中寫入pid。
復制代碼 代碼如下:
<?php
function start($file){
$path = dirname(__FILE__).'/';
$runfile = $path.$file.'.run';
$diefile = $path.$file.'.die';
$file = $path."data/{$file}.php";
clearstatcache();
if(file_exists($runfile)){
$oldpid = file_get_contents($runfile);
$nowpid = shell_exec("ps aux | grep 'php -f process.php' | grep ${oldpid} | awk '{print $2}'");
//如果runfile中的pid號可以匹配到正在運行的,並且上次訪問runfile的時間和現在相差小於5min則返回
if(($oldpid == $nowpid) && (time() - fileatime($runfile) < 300)){
echo "$file is circle runing no";
return;
}else{
//pid號不匹配或者已經有300秒沒有運行循環語句,直接殺掉進程,重新啟動
$pid = file_get_contents($runfile);
shell_exec("ps aux | grep 'php -f process.php' | grep {$pid} | xargs --if-no-run-empty kill");
}
}else{
//將文件pid寫入run文件
if(!($newpid = getmypid()) || !file_put_contents($runfile,$newpid)){
return;
}
while(true){
//收到結束進程新號,結束進程,並刪除相關文件
if(file_exists($diefile) && unlink($runfile) && unlink($diefile)){
return;
}
/*這裡是守護進程要做的事*/
file_put_contents($file,"I'm Runing Now".PHP_EOL,FILE_APPEND);
/***********************/
touch($runfile);
sleep(5);
}
}
}
start("test");
hp寫守護進程時童謠要注意幾點:
1.首先就是函數clearstatcache()函數那裡,查官方手冊可以知道該函數是清除文件狀態緩存的,當在一個腳本中多次檢查同一個文件的緩存狀態時如果不用該函數就會出錯,受該函數影響的有:stat(), lstat(), file_exists(), is_writable(),is_readable(), is_executable(), is_file(), is_dir(), is_link(),filectime(), fileatime(), filemtime(), fileinode(), filegroup(),fileowner(), filesize(), filetype(), fileperms().
2.在多次運行該腳本時,會在運行前進行檢測,上次執行循環的時間距離現在大於300s或者pid號不匹配都會重啟該進程(時間在每次執行循環式都要更新touch)。
3.自動重啟也用到了crontab的日程表,將該文件添加入日程表:
復制代碼 代碼如下:
crontab -e
#打開日程表,inset模式
*/3 * * * * /usr/bin/php -f process.php
#每3分鐘執行一次,放置進程掛掉
這樣就基本ok了,要是有具體功能的話還需改動代碼。