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.
12 lines
317 B
12 lines
317 B
--TEST--
|
|
htmlentities() test 1 (cp1252)
|
|
--INI--
|
|
output_handler=
|
|
--FILE--
|
|
<?php
|
|
var_dump(htmlentities("\x82\x86\x99\x9f", ENT_QUOTES, 'cp1252'));
|
|
var_dump(htmlentities("\x80\xa2\xa3\xa4\xa5", ENT_QUOTES, 'cp1252'));
|
|
?>
|
|
--EXPECT--
|
|
string(28) "‚†™Ÿ"
|
|
string(32) "€¢£¤¥"
|
|
|