mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
30 lines
343 B
PHP
30 lines
343 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";
|
|
?>
|
|
==DONE==
|
|
--EXPECT--
|
|
D
|
|
C
|
|
B
|
|
A
|
|
==DONE==
|