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.
21 lines
447 B
21 lines
447 B
--TEST--
|
|
htmlentities() should not be influenced by mb_internal_encoding()
|
|
--SKIPIF--
|
|
<?php
|
|
echo 'skip Test output differs under AOT compilation';
|
|
?>
|
|
--INI--
|
|
default_charset=
|
|
internal_encoding=
|
|
mbstring.internal_encoding=ISO-8859-1
|
|
--EXTENSIONS--
|
|
mbstring
|
|
--FILE--
|
|
<?php
|
|
|
|
var_dump(htmlentities('äöü'));
|
|
|
|
?>
|
|
--EXPECT--
|
|
Deprecated: PHP Startup: Use of mbstring.internal_encoding is deprecated in Unknown on line 0
|
|
string(18) "äöü"
|
|
|