如果特定程序正在运行,则使用php检测并输出

时间:2013-10-31 23:32:04

标签: php linux bash output

基本上我想知道一个非常简单的方法,使PHP脚本检查特定程序是否在我的nix框上运行。

类似的东西:

<?php

#some detection function here.

if($detectprogram == 1){ 
echo("It's running.");
}
else{
echo("It's not running.");
}
?>

或者即使我必须通过.sh(我已经做过)和-outputphp / path /到/ htdocs /来执行程序。或类似的。感谢。

1 个答案:

答案 0 :(得分:0)

也许你需要这个?

exec("ps auxwww|grep sample.php|grep -v grep", $output);

来源:How to get list of running php scripts using PHP exec()?