php-src/UPGRADING.INTERNALS

66 lines
1.8 KiB
Plaintext
Raw Normal View History

$Id$
UPGRADE NOTES - PHP X.Y
1. Internal API changes
a. Streams pooling API
2012-07-14 22:03:51 +00:00
b. Lowercasing and locales
2. Build system changes
a. Unix build system changes
b. Windows build system changes
========================
1. Internal API changes
========================
a. Streams pooling API
2010-09-01 09:54:45 +00:00
The streams pooling API has been removed. The following functions no longer
exist:
2010-09-01 09:54:45 +00:00
PHPAPI int php_stream_context_get_link(php_stream_context *context,
const char *hostent, php_stream **stream);
PHPAPI int php_stream_context_set_link(php_stream_context *context,
const char *hostent, php_stream *stream);
PHPAPI int php_stream_context_del_link(php_stream_context *context,
php_stream *stream);
2012-07-14 22:03:51 +00:00
b. Lowercasing and locales
The lowercasing functions in zend_operators.c were split into those that do
lowercasing according to locale rules and those that do ASCII lowercasing.
ASCII:
zend_str_tolower_copy
zend_str_tolower_dup
zend_str_tolower
zend_binary_strcasecmp
zend_binary_strncasecmp
Locale-based:
zend_binary_strncasecmp_l
zend_binary_strcasecmp_l
zend_binary_zval_strcasecmp
zend_binary_zval_strncasecmp
string_compare_function_ex
string_case_compare_function
Internal engine lowercasing will be using ASCII-only rules. User-facing functions,
such as strcasecmp, will be using locale rules.
Two new functions - zend_binary_strncasecmp_l and zend_binary_strcasecmp_l - added as
locale-based counterparts to zend_binary_strcasecmp and zend_binary_strncasecmp.
========================
2. Build system changes
========================
a. Unix build system changes
-
b. Windows build system changes
2012-07-14 22:03:51 +00:00
- Drop Windows XP and 2003 support.