peachpie icon indicating copy to clipboard operation
peachpie copied to clipboard

proc_open doesn't work on Linux

Open kripper opened this issue 2 years ago • 0 comments

Test case:

        $descriptor = array(
                0 => array('pipe', 'r'),  // We will read from stdin
                1 => array('pipe', 'w'),  // We will write to stdout
        );

        assert(proc_open("/bin/ls 'file'", $descriptor, $pipes));

kripper avatar Nov 06 '22 07:11 kripper