Added information about Zend Extension API chabges

This commit is contained in:
Dmitry Stogov 2015-09-29 14:08:03 +03:00
parent ca36b7bc13
commit 27a5f66da4
2 changed files with 9 additions and 0 deletions

1
NEWS
View File

@ -7,6 +7,7 @@ PHP NEWS
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

View File

@ -795,3 +795,11 @@ out, that the corresponding SDK isn't available anymore.
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.