为了捕获 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。