编码:
exec('ps aux |grep tweet',$output,$return_var);
if(count($output)>0){
exec('php ' . DOCROOT . 'gremlins/tweet_gremlin.php &');
file_put_contents(DOCROOT . 'gremlins/tweet_gremlin.log', date('r') . ' Tweet Gremlin was not running. Starting now...');
}
在我看来,这段代码是有道理的,但它只会导致浏览器无限循环。我要做的是检查 tweet_gremlin.php 是否正在运行,如果没有运行,请启动它。DOCROOT 是前面代码中定义的常量。