We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4986740 + 2323dc2 commit 9bf21a4Copy full SHA for 9bf21a4
ext/standard/tests/general_functions/proc_open02.phpt
@@ -10,7 +10,7 @@ if (getenv('SKIP_SLOW_TESTS')) echo 'skip slow test';
10
$ds = array(array('pipe', 'r'));
11
12
$cat = proc_open(
13
- '/bin/sleep 2',
+ ['/bin/sleep', '2'],
14
$ds,
15
$pipes
16
);
@@ -34,7 +34,7 @@ echo "Done!\n";
34
bool(true)
35
array(8) {
36
["command"]=>
37
- string(12) "/bin/sleep 2"
+ string(10) "/bin/sleep"
38
["pid"]=>
39
int(%d)
40
["running"]=>
@@ -53,7 +53,7 @@ array(8) {
53
54
55
56
57
58
59
0 commit comments