. Fixed bug #69686 (password_verify reports back error on PHP7 will null
string). (Anthony)
. Added Windows support for getrusage(). (Kalle)
+ . Removed hardcoded limit on number of pipes in proc_open(). (Tony)
- Streams:
. Fixed bug #68532 (convert.base64-encode omits padding bytes).
acceptable classes:
unserialize($foo, ["allowed_classes" => ["MyClass", "MyClass2"]);
+- proc_open():
+ The maximum number of pipes used by proc_open() was previously limited by
+ hardcoded value of 16. This limit is now removed and the number of pipes is
+ effectively limited by the amount of memory available to PHP.
========================================
6. New Functions