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
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