From: Hannes Magnusson Date: Fri, 29 May 2015 19:04:53 +0000 (+0000) Subject: Fix typos and add link to the phpng upgrading wiki page X-Git-Tag: PRE_PHP7_NSAPI_REMOVAL~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8eea193470e1faf0c3ca53f37b958ba6570e5ac8;p=php Fix typos and add link to the phpng upgrading wiki page --- 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. ========================