mirror of
https://github.com/php/php-src.git
synced 2024-12-15 21:05:51 +08:00
remove stderr descriptor
This commit is contained in:
parent
afd8ebca78
commit
8fed210610
@ -19,7 +19,7 @@ $s = fgets($in);
|
||||
?>';
|
||||
file_put_contents($fl, $test_content);
|
||||
|
||||
$descriptorspec = array(0 => array("pipe", "r"),1 => array("pipe", "w"), 2 => array("file", "error-output.txt", "a"));
|
||||
$descriptorspec = array(0 => array("pipe", "r"),1 => array("pipe", "w"));
|
||||
$pipes = array();
|
||||
|
||||
$process = proc_open(PHP_BINARY.' -f ' . $fl, $descriptorspec, $pipes, NULL, NULL, array("blocking_pipes" => true));
|
||||
|
Loading…
Reference in New Issue
Block a user