php-src/ext/reflection/tests/bug26640.phpt
2008-05-24 13:34:22 +00:00

26 lines
324 B
PHP
Executable File

--TEST--
Reflection Bug #26640 (__autoload() not invoked by Reflection classes)
--FILE--
<?php
function __autoload($c)
{
class autoload_class
{
public function __construct()
{
print "autoload success\n";
}
}
}
$a = new ReflectionClass('autoload_class');
if (is_object($a)) {
echo "OK\n";
}
?>
--EXPECT--
OK