Edit report at http://bugs.php.net/bug.php?id=49407&edit=1
ID: 49407 Updated by: [email protected] Reported by: thomas at landauer dot at Summary: get_html_translation_table(): it doesn't output table for htmlentities in utf-8 -Status: Re-Opened +Status: Closed Type: Bug Package: Strings related Operating System: * PHP Version: Irrelevant Assigned To: cataphract Block user comment: N New Comment: Fixed for PHP 5.3 and trunk. Previous Comments: ------------------------------------------------------------------------ [2010-10-12 04:51:13] [email protected] Automatic comment from SVN on behalf of cataphract Revision: http://svn.php.net/viewvc/?view=revision&revision=304340 Log: - Added a 3rd parameter to get_html_translation_table. It now takes a charset hint, like htmlentities et al. - Fixed bug #49407 (get_html_translation_table doesn't handle UTF-8). - Fixed bug #25927 (get_html_translation_table calls the ' ' instead of '). - Fixed tests for get_html_translation_table and unified the Windows and non-Windows versions of the tests. ------------------------------------------------------------------------ [2009-11-13 22:38:29] [email protected] Automatic comment from SVN on behalf of vrana Revision: http://svn.php.net/viewvc/?view=revision&revision=290717 Log: Works with default charset (bug #49407) ------------------------------------------------------------------------ [2009-11-13 22:38:17] [email protected] This bug has been fixed in the documentation's XML sources. Since the online and downloadable versions of the documentation need some time to get updated, we would like to ask you to be a bit patient. Thank you for the report, and for helping us make our documentation better. ------------------------------------------------------------------------ [2009-08-30 19:32:58] [email protected] There is no such OS called "All". ------------------------------------------------------------------------ [2009-08-29 18:33:29] thomas at landauer dot at Description: ------------ get_html_translation_table(HTML_ENTITIES) lists the tranlation table used by htmlentities *when no charset parameter is given*. htmlentities($string, ENT_COMPAT, 'utf-8') encodes more characters than get_html_translation_table(HTML_ENTITIES) contains!! So I suggest either: *) Add a charset parameter to get_html_translation_table() - corresponding to htmlentities() Or *) Correct the documentation. E.g.: get_html_translation_table() will return the translation table that is used internally for htmlspecialchars() and htmlentities() when no charset parameter is given. Note: If htmlentities() is called with a charset parameter, it converts more characters than get_html_translation_table() shows. Currently, there is no way to display the translation table which is used in that case. Reproduce code: --------------- htmlentities('∫', ENT_COMPAT, 'utf-8'); // returns ∫ print_r(get_html_translation_table(HTML_ENTITIES)); // ∫ is not listed ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/bug.php?id=49407&edit=1
