Lines Matching refs:table
2 Test get_html_translation_table() function : basic functionality - table as HTML_SPECIALCHARS
5 /* test get_html_translation_table() when $table argument is specified as HTML_SPECIALCHARS */
9 // $table as HTML_SEPCIALCHARS and different quote style
10 echo "-- with table = HTML_SPECIALCHARS & quote_style = ENT_COMPAT --\n";
11 $table = HTML_SPECIALCHARS;
13 $tt = get_html_translation_table($table, $quote_style, "UTF-8");
17 echo "-- with table = HTML_SPECIALCHARS & quote_style = ENT_QUOTES --\n";
19 $tt = get_html_translation_table($table, $quote_style, "UTF-8");
23 echo "-- with table = HTML_SPECIALCHARS & quote_style = ENT_NOQUOTES --\n";
25 $tt = get_html_translation_table($table, $quote_style, "UTF-8");
33 -- with table = HTML_SPECIALCHARS & quote_style = ENT_COMPAT --
44 -- with table = HTML_SPECIALCHARS & quote_style = ENT_QUOTES --
57 -- with table = HTML_SPECIALCHARS & quote_style = ENT_NOQUOTES --