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.
15 lines
329 B
15 lines
329 B
--TEST--
|
|
Bug #73817 (Incorrect entries in get_html_translation_table)
|
|
--SKIPIF--
|
|
--FILE--
|
|
<?php
|
|
$entities = get_html_translation_table( HTML_ENTITIES, ENT_QUOTES | ENT_HTML5);
|
|
foreach ($entities as $entity) {
|
|
if (substr($entity, -1) !== ';') {
|
|
var_dump($entity);
|
|
}
|
|
}
|
|
echo "===DONE===\n";
|
|
?>
|
|
--EXPECT--
|
|
===DONE===
|
|
|