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
347 B
12 lines
347 B
--TEST--
|
|
Bug #43927 (koi8r is missing from html_entity_decode())
|
|
--FILE--
|
|
<?php
|
|
var_dump(html_entity_decode("&lt;", ENT_COMPAT, 'koi8-r'));
|
|
var_dump(html_entity_decode("&#38;", ENT_COMPAT, 'koi8-r'));
|
|
var_dump(html_entity_decode("&#38;lt;", ENT_COMPAT, 'koi8-r'));
|
|
?>
|
|
--EXPECT--
|
|
string(4) "<"
|
|
string(5) "&"
|
|
string(8) "&lt;"
|
|
|