php-src/ext/reflection/tests/bug26640.phpt
2004-01-16 18:24:31 +00:00

26 lines
314 B
PHP
Executable File

--TEST--
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 Reflection_Class('autoload_class');
if (is_object($a)) {
echo "OK\n";
}
?>
--EXPECT--
OK