summaryrefslogtreecommitdiff
path: root/UPGRADING.INTERNALS
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2014-08-24 02:36:17 +0200
committerAnatol Belski <ab@php.net>2014-08-24 02:36:17 +0200
commit3c17ce9e0f3a0855fa936275bd7d28a51a2e4a93 (patch)
treef5ed856bafb3f0cb4c8ef75d7b668fb458f2b1ef /UPGRADING.INTERNALS
parent70de6180d5a022806212d2b6eebbba48af827940 (diff)
downloadphp-git-3c17ce9e0f3a0855fa936275bd7d28a51a2e4a93.tar.gz
note on %pd format
Diffstat (limited to 'UPGRADING.INTERNALS')
-rw-r--r--UPGRADING.INTERNALS4
1 files changed, 4 insertions, 0 deletions
diff --git a/UPGRADING.INTERNALS b/UPGRADING.INTERNALS
index e46581ac70..026b02d0d6 100644
--- a/UPGRADING.INTERNALS
+++ b/UPGRADING.INTERNALS
@@ -77,6 +77,10 @@ UPGRADE NOTES - PHP X.Y
pointer address might need to be enclosed into #ifdef when it unlickily followed by 'd',
'u', 'x' or 'o'.
+ The only exceptions are the snprintf and zend_sprintf functions yet, because in some cases
+ they can use the implemenations available on the system, not the PHP one. Fro snprintf the
+ usage of the macros ZEND_INT_FMT ZEND_UINT_FMT should be used.
+
h. HashTable API
Datatype for array indexes was changed to php_uint_t, for string keys to zend_string *.