php-src/ext/reflection/tests/bug26640.phpt
Marcus Boerger 352d4a6d8c - Prefix test names
- Add missing skipif
2006-03-12 12:11:22 +00:00

28 lines
391 B
PHP
Executable File

--TEST--
Reflection Bug #26640 (__autoload() not invoked by Reflection classes)
--SKIPIF--
<?php extension_loaded('reflection') or die('skip'); ?>
--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