php-src/Zend/tests/lsb_017.phpt
2020-02-03 22:52:20 +01:00

28 lines
358 B
PHP

--TEST--
ZE2 Late Static Binding nested calls
--FILE--
<?php
class A {
public static function test($x=null) {
if (!is_null($x)) {
echo "$x\n";
}
return get_called_class();
}
}
class B extends A {
}
class C extends A {
}
class D extends A {
}
echo A::test(B::test(C::test(D::test())))."\n";
?>
--EXPECT--
D
C
B
A