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.
 
 
 
 
 
 

20 lines
246 B

--TEST--
Unicode identifiers normalization (indirect function call)
--INI--
unicode.semantics=on
--FILE--
<?php
declare(encoding = "ISO-8859-1");
function Å() {
echo "ok\n";
}
$f1 = "\u212B";
$f1();
$f2 = "\u00C5";
$f2();
?>
--EXPECT--
ok
ok