File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 231
231
. Fixed bug #69686 (password_verify reports back error on PHP7 will null
232
232
string). (Anthony)
233
233
. Added Windows support for getrusage(). (Kalle)
234
+ . Removed hardcoded limit on number of pipes in proc_open(). (Tony)
234
235
235
236
- Streams:
236
237
. Fixed bug #68532 (convert.base64-encode omits padding bytes).
Original file line number Diff line number Diff line change @@ -577,6 +577,10 @@ Other
577
577
acceptable classes:
578
578
unserialize($foo, ["allowed_classes" => ["MyClass", "MyClass2"]);
579
579
580
+ - proc_open():
581
+ The maximum number of pipes used by proc_open() was previously limited by
582
+ hardcoded value of 16. This limit is now removed and the number of pipes is
583
+ effectively limited by the amount of memory available to PHP.
580
584
581
585
========================================
582
586
6. New Functions
You can’t perform that action at this time.
0 commit comments