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.
 
 
 
 
 
 

15 lines
242 B

--TEST--
Ensure instanceof does not trigger autoload.
--FILE--
<?php
function __autoload($name)
{
echo "In autoload: ";
var_dump($name);
}
$a = new stdClass;
var_dump($a instanceof UndefC);
?>
--EXPECTF--
bool(false)