-
-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
More pipes? #75
Comments
Currently this is not supported. What are you trying to do? |
I just had a program which used stdout for debug info and an additional pipe for data transfer. It's not a big problem I can move info to stderr and use stdout for data. |
If you control both sides, you might find the IPC API of |
I use it to run programs written in different languages (python, dart). I just did: list($command, $id, $data) = explode(':', $chunk); Instead of using different pipes. I guess I could have done this from begining. But still I think it might be useful to get support for pipes in future. |
Is there a way to open more pipes? In normal PHP I can use proc_open to do something like this:
I couldn't find any documentation on this.
The text was updated successfully, but these errors were encountered: