对于捕获stdout和stderr,当你不关心中间文件时,我使用以下方法获得了更好的结果:
<?php
function cmd_exec($cmd, &$stdout, &$stderr)
{
$outfile = tempnam(".", "cmd");
$errfile = tempnam(".", "cmd");
$descriptorspec = array(
0 => array("pipe", "r"),
1 => array("file", $outfile, "w"),
2 => array("file", $errfile, "w")
);
$proc = proc_open($cmd, $descriptorspec, $pipes);
if (!is_resource($proc)) return 255;
fclose($pipes[0]); $exit = proc_close($proc);
$stdout = file($outfile);
$stderr = file($errfile);
unlink($outfile);
unlink($errfile);
return $exit;
}
?>
这与重定向没有什么不同,只是它为你处理了临时文件(你可能需要将目录从“.”更改),并且由于proc_close调用而自动阻塞。这模拟了shell_exec的行为,并且可以获取stderr。