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 var_dump( get_html_translation_table($table, $quote_style, "UTF-8") );
20 echo "-- with table = HTML_SPECIALCHARS & quote_style = ENT_QUOTES --\n";
22 var_dump( get_html_translation_table($table, $quote_style, "UTF-8") );
24 echo "-- with table = HTML_SPECIALCHARS & quote_style = ENT_NOQUOTES --\n";
26 var_dump( get_html_translation_table($table, $quote_style, "UTF-8") );
32 -- with table = HTML_SPECIALCHARS & quote_style = ENT_COMPAT --
43 -- with table = HTML_SPECIALCHARS & quote_style = ENT_QUOTES --
56 -- with table = HTML_SPECIALCHARS & quote_style = ENT_NOQUOTES --