diff options
author | Hannes Magnusson <bjori@php.net> | 2015-05-29 19:04:53 +0000 |
---|---|---|
committer | Hannes Magnusson <bjori@php.net> | 2015-05-29 19:07:14 +0000 |
commit | 8eea193470e1faf0c3ca53f37b958ba6570e5ac8 (patch) | |
tree | 63e162b023d6082596469e77b26f04ac38329e77 /UPGRADING.INTERNALS | |
parent | 36eb66692cca25b70e12387f28641c6434054dcb (diff) | |
download | php-git-8eea193470e1faf0c3ca53f37b958ba6570e5ac8.tar.gz |
Fix typos and add link to the phpng upgrading wiki page
Diffstat (limited to 'UPGRADING.INTERNALS')
-rw-r--r-- | UPGRADING.INTERNALS | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/UPGRADING.INTERNALS b/UPGRADING.INTERNALS index 632c87e1c4..07a2196eaa 100644 --- a/UPGRADING.INTERNALS +++ b/UPGRADING.INTERNALS @@ -2,6 +2,7 @@ $Id$ PHP 7.0 INTERNALS UPGRADE NOTES +0. Wiki Examples 1. Internal API changes e. New data types f. zend_parse_parameters() specs @@ -23,6 +24,14 @@ PHP 7.0 INTERNALS UPGRADE NOTES b. Windows build system changes +================ +0. Wiki Examples +================ + +The wiki contains multiple examples and further explainations of the internal +changes. See: https://wiki.php.net/phpng-upgrading + + ======================== 1. Internal API changes ======================== @@ -196,10 +205,10 @@ PHP 7.0 INTERNALS UPGRADE NOTES zend_fetch_resource_ex. More details can be found in Zend/zend_list.c. t. Optimized strings concatenation. - ZEND_ADD_STRING/VAR/CHAR are replaced with ZEND_ROPE_INTI, ZEND_ROPE_ADD, + ZEND_ADD_STRING/VAR/CHAR are replaced with ZEND_ROPE_INIT, ZEND_ROPE_ADD, ZEND_ROPE_END. Instead of reallocation and copying string on each ZEND_ADD_STRING/VAR/CAHR, - collect all the strings and then alloca te and construct the resulting string once. + collect all the strings and then allocate and construct the resulting string once. ======================== |