diff options
author | Gustavo André dos Santos Lopes <cataphract@php.net> | 2010-10-24 16:21:15 +0000 |
---|---|---|
committer | Gustavo André dos Santos Lopes <cataphract@php.net> | 2010-10-24 16:21:15 +0000 |
commit | 3f804701b50e73eb50e43aaca4644695844f1625 (patch) | |
tree | 56d4acf45bb2188465f866e1c1b8a7519b9fd54e /UPGRADING.INTERNALS | |
parent | 91727cb844ecfe55f6dcd2f13ffeec3962aabbac (diff) | |
download | php-git-3f804701b50e73eb50e43aaca4644695844f1625.tar.gz |
- Added to UPGRADING(.INTERNALS) information about the changes on html.c.
- Added to UPGRADING information about the new class Transliteral, the new
parameter in dns_get_record and the fact that call_user_func_array no longer
allows call-time pass-by-reference.
Diffstat (limited to 'UPGRADING.INTERNALS')
-rw-r--r-- | UPGRADING.INTERNALS | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/UPGRADING.INTERNALS b/UPGRADING.INTERNALS index a4e3c83b9c..ababca9e45 100644 --- a/UPGRADING.INTERNALS +++ b/UPGRADING.INTERNALS @@ -103,4 +103,14 @@ Use emalloc, emalloc_rel, efree or efree_rel instead. . php_idate PHPAPI php_idate(char format, time_t ts, int localtime TSRMLS_DC) - Call: int ret = php_idate(format, ts, localtime TSRMLS_CC)
\ No newline at end of file + Call: int ret = php_idate(format, ts, localtime TSRMLS_CC) + +. php_escape_html_entities + (size_t parameters were ints, previous "quote_style" (now flags) has expanded meaning) + PHPAPI char *php_escape_html_entities(unsigned char *old, size_t oldlen, size_t *newlen, int all, int flags, char *hint_charset TSRMLS_DC); + +. php_escape_html_entities_ex + PHPAPI char *php_escape_html_entities_ex(unsigned char *old, size_t oldlen, size_t *newlen, int all, int flags, char *hint_charset, zend_bool double_encode TSRMLS_DC); + +. php_unescape_html_entities + PHPAPI char *php_unescape_html_entities(unsigned char *old, size_t oldlen, size_t *newlen, int all, int flags, char *hint_charset TSRMLS_DC); |