-=[ Mr. Bumblebee ]=-
_Indonesia_

Path : /usr/src/php/ext/reflection/tests/
File Upload :
Current File : //usr/src/php/ext/reflection/tests/bug26640.phpt

--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

Copyright © 2017 || Recoded By Mr.Bumblebee