You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
--TEST--
|
|
|
htmlentities() / htmlspecialchars() ENT_SUBSTITUTE
|
|
|
--FILE--
|
|
|
<?php
|
|
|
$tests = array(
|
|
|
"\x41\xC2\x3E\x42", // Unicode TR #36, 3.1.1; do not consume valid successor bytes
|
|
|
"\xE3\x80\x22", // Unicode TR #36, 3.6.1; use strategy #2
|
|
|
"\x41\x98\xBA\x42\xE2\x98\x43\xE2\x98\xBA\xE2\x98", // example from HTML5, section 2.4
|
|
|
);
|
|
|
|
|
|
foreach ($tests as $test) {
|
|
|
$a = htmlentities($test, ENT_QUOTES | ENT_SUBSTITUTE, "UTF-8");
|
|
|
var_dump($a, bin2hex($a));
|
|
|
$a = htmlspecialchars($test, ENT_QUOTES | ENT_SUBSTITUTE, "UTF-8");
|
|
|
var_dump($a, bin2hex($a));
|
|
|
}
|
|
|
?>
|
|
|
--EXPECT--
|
|
|
string(9) "A<EFBFBD>>B"
|
|
|
string(18) "41efbfbd2667743b42"
|
|
|
string(9) "A<EFBFBD>>B"
|
|
|
string(18) "41efbfbd2667743b42"
|
|
|
string(9) "<EFBFBD>""
|
|
|
string(18) "efbfbd2671756f743b"
|
|
|
string(9) "<EFBFBD>""
|
|
|
string(18) "efbfbd2671756f743b"
|
|
|
string(18) "A<EFBFBD><EFBFBD>B<EFBFBD>C☺<EFBFBD>"
|
|
|
string(36) "41efbfbdefbfbd42efbfbd43e298baefbfbd"
|
|
|
string(18) "A<EFBFBD><EFBFBD>B<EFBFBD>C☺<EFBFBD>"
|
|
|
string(36) "41efbfbdefbfbd42efbfbd43e298baefbfbd"
|
|
|
|