情况就是这样:我有一个unix程序输出一些行,并且在它连续监听时不会终止。现在我想在PHP脚本中输出这些行。我使用了system()函数,但它阻止了其余代码的运行,因为unix程序没有终止。 我正在考虑一旦控制台中的unix程序输出一行就输出该行的可能性。 我怎么做到这一点? 谢谢。
答案 0 :(得分:1)
一个好的解决方案是使用proc_open(),因为您可以使用所有管道。 这里展示了很好的方法:http://codehackit.blogspot.be/2012/04/automating-command-line-scripts-in-php.html
我正在考虑输出一次线的可能性 line由控制台中的unix程序输出。
简单的句子 - 复杂的问题。
这将涉及监视输出缓冲区或输出日志文件以进行更改,然后对此做出反应。事件限制。尝试使用$proc->on()
来检测输出缓冲区中的内容,以便触发回调。
参考:Proper shell execution in PHP& https://stackoverflow.com/a/1533818/1163786
答案 1 :(得分:1)
这是一个示例脚本,可以帮到你:
$cmd='/bin/ls -la';
$gs="\n"; // this is the delimiter of each line. use "\r\n" in case of windows ...
$pipesDescr=array( 0 => array("pipe", "r"), 1 => array("pipe", "w"), 2 => array("file", "/tmp/error.log", "a"), );
$p=proc_open($cmd, $pipesDescr, $pipes);
if ($p)
{
stream_set_blocking($pipes[0],0);
stream_set_blocking($pipes[1],0);
$work=true; $buffer=''; $mode='idle'; $command=''; $idle=0;
while ($work)
{
if ($mode=='idle')
{
if ($command<>'')
{
fwrite($pipes[0],$command."\n");
$command='';
$idle=0;
$speed=500; // microseconds!
}
else
{
$speed=100000; // microseconds !
}
}
$s=fread($pipes[1],1024);
if ($s<>'')
{
$mode='action';
$buffer.=$s;
while (strstr($buffer,$gs))
{
$ex=explode($gs,$buffer,2);
{
$buffer=@$ex[1]; $line=@$ex[0];
// here you can process the line with something ...
print($line."<br/>\n");
//
}
}
$speed=500;
$idle=0;
}
else
{
if (@$idle<1000)
{
$idle++; // did not idled for too long, let's still watch intensely for new data
}
else
{
$speed=100000; // it's been idle for a while, let's not overload the CPU for nothing ...
$mode='idle';
}
}
$status=proc_get_status($p);
if (!$status["running"]) {$work=false;} // if the program has quited, we should do so as well ...
} // end of $work loop
proc_close($p);
}
此示例使用proc_open,并一直运行,直到您的进程终止,或者直到您决定退出为止。 (在这种情况下,你应该将$ work设置为false ...)