1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
--TEST--
proc_open() with > 16 pipes
--FILE--
<?php
for ($i = 3; $i<= 30; $i++) {
$spec[$i] = array('pipe', 'w');
}
$php = getenv("TEST_PHP_EXECUTABLE_ESCAPED");
$callee = escapeshellarg(__DIR__ . "/proc_open_pipes_sleep.inc");
proc_open("$php -n $callee", $spec, $pipes);
var_dump(count($spec));
var_dump($pipes);
?>
--EXPECTF--
int(28)
array(28) {
[3]=>
resource(%d) of type (Unknown)
[4]=>
resource(%d) of type (Unknown)
[5]=>
resource(%d) of type (Unknown)
[6]=>
resource(%d) of type (Unknown)
[7]=>
resource(%d) of type (Unknown)
[8]=>
resource(%d) of type (Unknown)
[9]=>
resource(%d) of type (Unknown)
[10]=>
resource(%d) of type (Unknown)
[11]=>
resource(%d) of type (Unknown)
[12]=>
resource(%d) of type (Unknown)
[13]=>
resource(%d) of type (Unknown)
[14]=>
resource(%d) of type (Unknown)
[15]=>
resource(%d) of type (Unknown)
[16]=>
resource(%d) of type (Unknown)
[17]=>
resource(%d) of type (Unknown)
[18]=>
resource(%d) of type (Unknown)
[19]=>
resource(%d) of type (Unknown)
[20]=>
resource(%d) of type (Unknown)
[21]=>
resource(%d) of type (Unknown)
[22]=>
resource(%d) of type (Unknown)
[23]=>
resource(%d) of type (Unknown)
[24]=>
resource(%d) of type (Unknown)
[25]=>
resource(%d) of type (Unknown)
[26]=>
resource(%d) of type (Unknown)
[27]=>
resource(%d) of type (Unknown)
[28]=>
resource(%d) of type (Unknown)
[29]=>
resource(%d) of type (Unknown)
[30]=>
resource(%d) of type (Unknown)
}
|