php-8.0.30-src/ext/standard/tests/strings/bug73817.phpt

15 lines
308 B
PHP

--TEST--
Bug #73817 (Incorrect entries in get_html_translation_table)
--FILE--
<?php
$entities = get_html_translation_table( HTML_ENTITIES, ENT_QUOTES | ENT_HTML5);
foreach ($entities as $entity) {
if (substr($entity, -1) !== ';') {
var_dump($entity);
}
}
?>
===DONE===
--EXPECT--
===DONE===