Re: [PHP-DEV] Bi-Directional Process Pipe

2002-03-29 Thread Wez Furlong
Hi, I mentioned this a week or so ago, but had no response. I have in mind a function that can work something like this: $options = array( 0 => array("pipe", "r") // Stdin for new proc will be a pipe 1 => array("pipe", "w") // Stdout for new proc will be a pipe 2 => null, // S

[PHP-DEV] Bi-Directional Process Pipe

2002-03-28 Thread weed5312
Hello- I am wondering if there are any solutions for creating a bi- directional process pipe. Currently, popen() is only uni-directional, which isn't satisfactory for what I'm trying to do. Are there any modules/libraries with a bi-directional pipe? Any ideas on how to accomplish th