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.
23 lines
570 B
23 lines
570 B
--TEST--
|
|
HTML entities of ISO-8859 chars
|
|
--SKIPIF--
|
|
<?php
|
|
echo 'skip File encoding is ISO-8859-1, AOT requires UTF-8';
|
|
?>
|
|
--INI--
|
|
output_handler=
|
|
--FILE--
|
|
<?php
|
|
setlocale (LC_CTYPE, "C");
|
|
$sc_encoded = htmlspecialchars ("<>\"&åÄ\n",ENT_COMPAT,"ISO-8859-1");
|
|
echo $sc_encoded;
|
|
$ent_encoded = htmlentities ("<>\"&åÄ\n",ENT_COMPAT,"ISO-8859-1");
|
|
echo $ent_encoded;
|
|
echo html_entity_decode($sc_encoded,ENT_COMPAT,"ISO-8859-1");
|
|
echo html_entity_decode($ent_encoded,ENT_COMPAT,"ISO-8859-1");
|
|
?>
|
|
--EXPECT--
|
|
<>"&åÄ
|
|
<>"&åÄ
|
|
<>"&åÄ
|
|
<>"&åÄ
|
|
|