get_html_translation_table Returns the translation table used by htmlspecialchars and htmlentities &reftitle.description; arrayget_html_translation_table inttableHTML_SPECIALCHARS intquote_styleENT_COMPAT stringcharset_hint get_html_translation_table will return the translation table that is used internally for htmlspecialchars and htmlentities with the default charset. Special characters can be encoded in several ways. E.g. " can be encoded as ", " or &#x22. get_html_translation_table returns only the form used by htmlspecialchars and htmlentities. &reftitle.parameters; table There are two new constants (HTML_ENTITIES, HTML_SPECIALCHARS) that allow you to specify the table you want. quote_style Like the htmlspecialchars and htmlentities functions you can optionally specify the quote_style you are working with. See the description of these modes in htmlspecialchars. charset_hint Like htmlentities, it takes an optional third argument charset which defines character set used in conversion. Presently, the ISO-8859-1 character set is used as the default. &reference.strings.charsets; &reftitle.returnvalues; Returns the translation table as an array. &reftitle.changelog; &Version; &Description; 5.3.4 The charset_hint parameter was added. &reftitle.examples; Translation Table Example & Krämer"; $encoded = strtr($str, $trans); echo $encoded; ?> ]]> &example.outputs; &reftitle.seealso; htmlspecialchars htmlentities html_entity_decode