File tree 4 files changed +381
-69
lines changed
4 files changed +381
-69
lines changed Original file line number Diff line number Diff line change @@ -93,6 +93,11 @@ $command->setStdIn('string');
93
93
PHP working dir.
94
94
* ` $procEnv ` : An array with environment variables to pass to ` proc_open() ` . Default is ` null ` for none.
95
95
* ` $procOptions ` : An array of ` other_options ` for ` proc_open() ` . Default is ` null ` for none.
96
+ * ` $nonBlockingMode ` : Whether to set the stdin/stdout/stderr streams to non-blocking
97
+ mode when ` proc_open() ` is used. This allows to have huge inputs/outputs
98
+ without making the process hang. The default is ` null ` which will enable
99
+ the feature on Non-Windows systems. Set it to ` true ` or ` false ` to manually
100
+ enable/disable it. Note that it doesn't work on Windows.
96
101
* ` $locale ` : The locale to (temporarily) set with ` setlocale() ` before running the command.
97
102
This can be set to e.g. ` en_US.UTF-8 ` if you have issues with UTF-8 encoded arguments.
98
103
You can’t perform that action at this time.
0 commit comments