Home > PHP > Function > Strings > get_html_translation_table()

get_html_translation_table()

get_html_translation_table - Returns the translation table used by

htmlspecialchars()
and

htmlentities()

Syntax

array get_html_translation_table (int $table, int $quote_style)

Arguments

  • 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().

Description

get_html_translation_table() will return the translation table that is used internally for htmlspecialchars() and htmlentities() with the default charset.

Version

PHP 4, 5

Return value

Returns the translation table as an array.