diff options
author | Dmitry Stogov <dmitry@zend.com> | 2017-09-20 02:25:56 +0300 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2017-09-20 02:25:56 +0300 |
commit | 44e0b79ac64b344fc1335c126e548f00d8308602 (patch) | |
tree | bcfc582b0d7a46b9798498fcb163079c7b9b8750 /UPGRADING.INTERNALS | |
parent | c1dc10aaa5249ba54b6fa5bc043a80bd96f1c9e7 (diff) | |
download | php-git-44e0b79ac64b344fc1335c126e548f00d8308602.tar.gz |
Refactored array creation API. array_init() and array_init_size() are converted into macros calling zend_new_array(). They are not functions anymore and don't return any values.
Diffstat (limited to 'UPGRADING.INTERNALS')
-rw-r--r-- | UPGRADING.INTERNALS | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/UPGRADING.INTERNALS b/UPGRADING.INTERNALS index 0772009bbe..f505483562 100644 --- a/UPGRADING.INTERNALS +++ b/UPGRADING.INTERNALS @@ -9,6 +9,7 @@ PHP 7.2 INTERNALS UPGRADE NOTES f. zend_arg_info.class_name removed g. ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX changed h. valid_symbol_table removed + i. array_init() and array_init_size() 2. Build system changes a. Unix build system changes @@ -48,6 +49,9 @@ PHP 7.2 INTERNALS UPGRADE NOTES h. valid_symbol_table is removed from executor_globals. Use EG(active) instead of removed EG(valid_symbol_table) + i. array_init() and array_init_size() are not functions anymore. + They don't return any values. + ======================== 2. Build system changes ======================== |