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.
13 lines
376 B
13 lines
376 B
--TEST--
|
|
Bug #43957 (utf8_decode() bogus conversion on multibyte indicator near end of string)
|
|
--SKIPIF--
|
|
<?php
|
|
echo 'skip Test output differs under AOT compilation';
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
echo utf8_decode('abc'.chr(0xe0));
|
|
?>
|
|
--EXPECTF--
|
|
Deprecated: Function utf8_decode() is deprecated since 8.2, visit the php.net documentation for various alternatives in %s on line %d
|
|
abc?
|
|
|