我试图从php中获取proc_open
方法的输出,但是,当我打印它时,我变空了。
$descriptorspec = array( 0 => array("pipe", "r"), 1 => array("pipe", "w"), 2 => array("file", "files/temp/error-output.txt", "a") ); $process = proc_open("time ./a a.out", $descriptorspec, $pipes, $cwd);
只要我知道,我可以使用stream_get_contents()
echo stream_get_contents($pipes[1]); fclose($pipes[1]);
但我不能这样做.. 有什么建议吗?
之前...... ...
答案 0 :(得分:7)
您的代码或多或少对我有用。 time
将其输出打印到stderr
,因此如果您要查找该输出,请查看文件files/temp/error-output.txt
。 stdout
管道$pipes[1]
仅包含计划./a
的输出。
我的代表:
[edan@edan tmp]$ cat proc.php
<?php
$cwd='/tmp';
$descriptorspec = array(
0 => array("pipe", "r"),
1 => array("pipe", "w"),
2 => array("file", "/tmp/error-output.txt", "a") );
$process = proc_open("time ./a a.out", $descriptorspec, $pipes, $cwd);
echo stream_get_contents($pipes[1]);
fclose($pipes[1]);
?>
[edan@edan tmp]$ php proc.php
a.out here.
[edan@edan tmp]$ cat /tmp/error-output.txt
real 0m0.001s
user 0m0.000s
sys 0m0.002s
答案 1 :(得分:7)
这是proc_open()
的另一个例子。
我在这个例子中使用Win32 ping.exe命令。 CMIIW
set_time_limit(1800);
ob_implicit_flush(true);
$exe_command = 'C:\\Windows\\System32\\ping.exe -t google.com';
$descriptorspec = array(
0 => array("pipe", "r"), // stdin
1 => array("pipe", "w"), // stdout -> we use this
2 => array("pipe", "w") // stderr
);
$process = proc_open($exe_command, $descriptorspec, $pipes);
if (is_resource($process))
{
while( ! feof($pipes[1]))
{
$return_message = fgets($pipes[1], 1024);
if (strlen($return_message) == 0) break;
echo $return_message.'<br />';
ob_flush();
flush();
}
}
希望这有助于=)