summaryrefslogtreecommitdiff
path: root/ext/standard/tests/strings/bug53021.phpt
blob: 6f290096e4d5038489edfd5ff468d3fc3c68d077 (plain)
1
2
3
4
5
6
7
8
9
10
--TEST--
Bug #53021 (Failure to convert numeric entities with ENT_NOQUOTES and ISO-8859-1)
--FILE--
<?php
var_dump(unpack("H*",html_entity_decode("&#233;", ENT_QUOTES, "ISO-8859-1")));
--EXPECT--
array(1) {
  [1]=>
  string(2) "e9"
}