summaryrefslogtreecommitdiff
path: root/Zend/tests/lsb_003.phpt
blob: 4e9fe1f7c832a8014b47d290d4d2dc2e57d11188 (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
--TEST--
ZE2 Late Static Binding creating a new class with 'static'
--FILE--
<?php

class TestClass {
	public static function createInstance() {
		return new static();
	}
}

class ChildClass extends TestClass {}

$testClass = TestClass::createInstance();
$childClass = ChildClass::createInstance();

echo get_class($testClass) . "\n";
echo get_class($childClass) . "\n";
?>
==DONE==
--EXPECTF--
TestClass
ChildClass
==DONE==