이 기사의 예에서는 PHP가 Linux에서 프로그램 문제를 확인하는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 내용은 다음과 같습니다.
때때로 서버에서 일부 스크립트를 작성할 때 정기적으로 실행하기 위해 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运行是否通畅多了呢?
이 기사가 모든 사람의 PHP 프로그래밍 설계에 도움이 되기를 바랍니다.