TypePHP 编译器
https://swoole.com/aot/
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.
34 lines
798 B
34 lines
798 B
--TEST--
|
|
html_entity_decode: Handling of '
|
|
--FILE--
|
|
<?php
|
|
|
|
echo "*** HTML 4.01 implicit (shouldn't decode) ***\n";
|
|
echo html_entity_decode("'", ENT_QUOTES, "UTF-8"), "\n";
|
|
|
|
echo "*** HTML 4.01 (shouldn't decode) ***\n";
|
|
echo html_entity_decode("'", ENT_QUOTES | ENT_HTML401, "UTF-8"), "\n";
|
|
|
|
echo "*** HTML 5 ***\n";
|
|
echo html_entity_decode("'", ENT_QUOTES | ENT_HTML5, "UTF-8"), "\n";
|
|
|
|
echo "*** XHTML 1.0 ***\n";
|
|
echo html_entity_decode("'", ENT_QUOTES | ENT_XHTML, "UTF-8"), "\n";
|
|
|
|
echo "*** XML 1.0 ***\n";
|
|
echo html_entity_decode("'", ENT_QUOTES | ENT_XML1, "UTF-8"), "\n";
|
|
|
|
echo "Done.\n";
|
|
?>
|
|
--EXPECT--
|
|
*** HTML 4.01 implicit (shouldn't decode) ***
|
|
'
|
|
*** HTML 4.01 (shouldn't decode) ***
|
|
'
|
|
*** HTML 5 ***
|
|
'
|
|
*** XHTML 1.0 ***
|
|
'
|
|
*** XML 1.0 ***
|
|
'
|
|
Done.
|
|
|