Lines Matching refs:table
2 Test get_html_translation_table() function : basic functionality - table as HTML_SPECIALCHARS
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 argument is specified as HTML_SPECIALCHARS */
14 // $table as HTML_SEPCIALCHARS and different quote style
15 echo "-- with table = HTML_SPECIALCHARS & quote_style = ENT_COMPAT --\n";
16 $table = HTML_SPECIALCHARS;
18 $tt = get_html_translation_table($table, $quote_style, "UTF-8");
22 echo "-- with table = HTML_SPECIALCHARS & quote_style = ENT_QUOTES --\n";
24 $tt = get_html_translation_table($table, $quote_style, "UTF-8");
28 echo "-- with table = HTML_SPECIALCHARS & quote_style = ENT_NOQUOTES --\n";
30 $tt = get_html_translation_table($table, $quote_style, "UTF-8");
38 -- with table = HTML_SPECIALCHARS & quote_style = ENT_COMPAT --
49 -- with table = HTML_SPECIALCHARS & quote_style = ENT_QUOTES --
62 -- with table = HTML_SPECIALCHARS & quote_style = ENT_NOQUOTES --