Lines Matching refs:table
5 /* Prototype : array get_html_translation_table ( [int $table [, int $quote_style [, string charse…
6 * Description: Returns the internal translation table used by htmlspecialchars and htmlentities
10 /* Test get_html_translation_table() when table is specified as HTML_ENTITIES */
15 echo "-- with table = HTML_ENTITIES --\n";
16 $table = HTML_ENTITIES;
17 var_dump( get_html_translation_table($table, ENT_COMPAT, "UTF-8") );
19 echo "-- with table = HTML_SPECIALCHARS --\n";
20 $table = HTML_SPECIALCHARS;
21 var_dump( get_html_translation_table($table, ENT_COMPAT, "UTF-8") );
27 -- with table = HTML_ENTITIES --
534 -- with table = HTML_SPECIALCHARS --