summaryrefslogtreecommitdiff
path: root/Zend/tests/lsb_003.phpt
blob: 0588b1bb60bdf470bf12e80de44266c3c9194cea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--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";
?>
--EXPECT--
TestClass
ChildClass