mirror of
https://github.com/php/php-src.git
synced 2026-04-27 01:48:26 +02:00
ab2ba0f49f
# note: not MFH stuff
9 lines
177 B
PHP
9 lines
177 B
PHP
--TEST--
|
|
Bug #25707 (html_entity_decode over-decodes <)
|
|
--FILE--
|
|
<?php
|
|
var_dump(html_entity_decode("&lt;", ENT_COMPAT, 'ISO-8859-1'));
|
|
?>
|
|
--EXPECT--
|
|
string(4) "<"
|