/*** User: yuzhao* CreateTime: 2018/11/26 下午8:20* Description: 获取进程数量*/public static function getProcessNum($keyWord) {$command = "ps -ef |grep -v grep | grep " . $keyWord . " | wc -l";exec($command, $res);return $res[0];}
eg
getProcessNum('tuzisir.php');