summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/bug26640.phpt
blob: 026e67561a9fd1f96c87b46f666fcc8e08087f5c (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
26
27
--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