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
632 B
17 lines
632 B
--TEST--
|
|
UTF-8<->ISO Latin 1 encoding/decoding test
|
|
--SKIPIF--
|
|
<?php
|
|
echo 'skip warning message format differs under AOT (PHP Request Startup prefix)';
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
printf("%s -> %s\n", urlencode("æ"), urlencode(utf8_encode("æ")));
|
|
printf("%s <- %s\n", urlencode(utf8_decode(urldecode("%C3%A6"))), "%C3%A6");
|
|
?>
|
|
--EXPECTF--
|
|
Deprecated: Function utf8_encode() is deprecated since 8.2, visit the php.net documentation for various alternatives in %s on line %d
|
|
%E6 -> %C3%A6
|
|
|
|
Deprecated: Function utf8_decode() is deprecated since 8.2, visit the php.net documentation for various alternatives in %s on line %d
|
|
%E6 <- %C3%A6
|
|
|