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.
 
 
 
 
 
 

14 lines
314 B

--TEST--
Ensure __autoload() recursion is guarded for multiple lookups of same class using difference case.
--FILE--
<?php
function __autoload($name)
{
echo __FUNCTION__ . " $name\n";
class_exists("undefinedCLASS");
}
class_exists("unDefinedClass");
?>
--EXPECTF--
__autoload unDefinedClass