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