01 Oct 2015, PHP 7.0.0 RC 4
- Core:
+ . Added zend_internal_function.reserved[] fields. (Dmitry)
. Fixed bug #70557 (Memleak on return type verifying failed). (Laruence)
. Fixed bug #70555 (fun_get_arg() on unsetted vars return UNKNOW). (Laruence)
. Fixed bug #70548 (Redundant information printed in case of uncaught engine
always say "integer" and "float" instead of "long" and "double".
. Output buffering now continues to work for an aborted connection if
ignore_user_abort is set to true.
+ . Zend Extensions API was extended with zend_extension.op_array_persist_calc()
+ and zend_extensions.op_array_persist() handlers. They allow to store (or
+ reset) associated with op_array addition information in Opcache Shared
+ Memory.
+ . zend_internal_function.reserved[] array was introduced to allow association
+ of aditional information with internal functions. In PHP-5 it was possible
+ to use zend_function.op_array.reserved[] even for internal functions, but
+ now we don't allocate extra space.