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.
17 lines
361 B
17 lines
361 B
--TEST--
|
|
htmlentities() test 11 (default_charset / ISO-8859-15)
|
|
--SKIPIF--
|
|
<?php
|
|
echo 'skip Test output differs under AOT compilation';
|
|
?>
|
|
--INI--
|
|
output_handler=
|
|
default_charset=ISO-8859-15
|
|
--FILE--
|
|
<?php
|
|
print ini_get('default_charset')."\n";
|
|
var_dump(htmlentities("\xbc\xbd\xbe", ENT_QUOTES, ''));
|
|
?>
|
|
--EXPECT--
|
|
ISO-8859-15
|
|
string(20) "ŒœŸ"
|
|
|