The proc_open() documentation states that it's possible to use other file descriptors than the standard ones:

The file descriptor numbers are not limited to 0, 1 and 2 - you may specify any valid file descriptor number and it will be passed to the child process.

But how do you actually go about doing this?

What do you need to do on the parent and child process to for example use an extra input and output pipe with a proc_open call?

Edit:

A related question - If the launched process was also a PHP function, you can access an arbitrary fd in PHP with the stream wrapper php://fd/3 (replace 3 with the fd number), but this feature is only available in PHP 5.3.6+. Is there any way of accessing an arbitrary fd in PHP 5.2?

link|improve this question

Did you read the comments at the corresponding manual page? – KingCrunch Jul 25 '11 at 12:52
@KingCrunch which page? Note that I'm talking about a PHP function here. – therefromhere Jul 25 '11 at 12:57
You linked it yourself ... php.net/manual/en/function.proc-open.php See your question above. – KingCrunch Jul 25 '11 at 13:03
@KingCrunch Ah, sorry I thought you were telling me to look at a man page. There is one example ( php.net/manual/en/function.proc-open.php#83635 ). Is it really that simple? I didn't think I could pick an arbitrary fd number. – therefromhere Jul 25 '11 at 13:27
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.