File:
[ELWIX - Embedded LightWeight unIX -] /
embedaddon /
php /
ext /
standard /
tests /
strings /
htmlentities19.phpt
Revision
1.1.1.1 (vendor branch):
download - view:
text,
annotated -
select for diffs -
revision graph
Tue May 29 12:34:45 2012 UTC (12 years, 9 months ago) by
misho
Branches:
php,
MAIN
CVS tags:
v5_4_3elwix,
v5_4_29p0,
v5_4_29,
v5_4_20p0,
v5_4_20,
v5_4_17p0,
v5_4_17,
HEAD
php 5.4.3+patches
--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�>B"
string(18) "41efbfbd2667743b42"
string(9) "A�>B"
string(18) "41efbfbd2667743b42"
string(9) "�""
string(18) "efbfbd2671756f743b"
string(9) "�""
string(18) "efbfbd2671756f743b"
string(18) "A��B�C☺�"
string(36) "41efbfbdefbfbd42efbfbd43e298baefbfbd"
string(18) "A��B�C☺�"
string(36) "41efbfbdefbfbd42efbfbd43e298baefbfbd"
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>