--TEST--
Test get_html_translation_table() function : basic functionality - HTML5 /sjis
--FILE--
--EXPECT--
*** Testing get_html_translation_table() : basic functionality/HTML5/SJIS ***
*** Only basic entities supported! ***
-- with table = HTML_ENTITIES, ENT_QUOTES --
int(5)
Array
(
[&] => &
['] => '
[>] => >
[<] => <
["] => "
)
-- with table = HTML_ENTITIES, ENT_COMPAT --
int(4)
-- with table = HTML_ENTITIES, ENT_NOQUOTES --
int(3)
-- with table = HTML_SPECIALCHARS, ENT_COMPAT --
int(4)
Array
(
[&] => &
[>] => >
[<] => <
["] => "
)
-- with table = HTML_SPECIALCHARS, ENT_QUOTES --
array(5) {
["&"]=>
string(5) "&"
["'"]=>
string(6) "'"
[">"]=>
string(4) ">"
["<"]=>
string(4) "<"
["""]=>
string(6) """
}
-- with table = HTML_SPECIALCHARS, ENT_NOQUOTES --
array(3) {
["&"]=>
string(5) "&"
[">"]=>
string(4) ">"
["<"]=>
string(4) "<"
}
Done