summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/bug26640.phpt
blob: 2cbd0d23d4149c5b513124ad999e95f563ed8e27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
--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 ReflectionClass('autoload_class');

if (is_object($a)) {
	echo "OK\n";
}

?>
--EXPECT--
OK