有時候在服務器上面寫一些腳本的時候,經常要放到crontab裡面定時運行。時間長了就有一個問題,那就是程序重復運行消耗太多的資源,怎麼處理呢?下面我寫了兩種方法:
第一種:用linux裡面的正則匹配
復制代碼 代碼如下:
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;
}
}
}
調用:
復制代碼 代碼如下:
if (ifrun('pooy',5)) { die("pooy is running"); }
備注:pooy是程序pooy.php的名稱!
第二種:把進程寫到文件裡面,然後用file函數去讀取然後去匹配字符串
復制代碼 代碼如下:
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” 是程序裡面包含的字符串!
現在php程序在linux運行是否通暢多了呢?