|
有時候在服務(wù)器上面寫一些腳本的時候,經(jīng)常要放到crontab里面定時運行。時間長了就有一個問題,那就是程序重復(fù)運行消耗太多的資源,怎么處理呢?下面我寫了兩種方法:
第一種:用linux里面的正則匹配
復(fù)制代碼 代碼如下:
function ifrun($clsname,$bf = 0)
{
//下面進行檢測,如有一個進程正在運行,則不運行
$str=shell_exec("/bin/ps ax > /home/root/".$clsname."_run.txt");
$str=shell_exec("/bin/grep -c '".$clsname.".php' /home/root/".$clsname."_run.txt");
if($bf >0)
{
if($str >=$bf)
{
return 1;
}
else
{
return 0;
}
}
else
{
if ($str>=2)
{
return 1;
}
else
{
return 0;
}
}
}
調(diào)用:
復(fù)制代碼 代碼如下:
if (ifrun('pooy',5)) { die("pooy is running"); }
備注:pooy是程序pooy.php的名稱!
第二種:把進程寫到文件里面,然后用file函數(shù)去讀取然后去匹配字符串
復(fù)制代碼 代碼如下:
system('ps -ef |grep wget > /root/pooy.txt');
$arr=file('/root/pooy.txt');
$total=count($arr);
for($i=0;$i<$total;$i++){
$count=array();
if(stristr($arr[$i],'www/pooy') !== FALSE) {
//echo '"earth" not found in string';
$count[]='no';
break;
}
}
if(count($count) >= 1 )
{
echo "A same programs are running";
exit();
}else
{
echo "start__________________________________________________";
}
注:”www/pooy” 是程序里面包含的字符串!
現(xiàn)在php程序在linux運行是否通暢多了呢?
php技術(shù):Linux中用PHP判斷程序運行狀態(tài)的2個方法,轉(zhuǎn)載需保留來源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯(lián)系我們修改或刪除,多謝。