2008-07-24 18:14:01 +08:00
|
|
|
--TEST--
|
|
|
|
ZE2 Late Static Binding parent::/self:: forwarding while classname doesn't
|
|
|
|
--FILE--
|
|
|
|
<?php
|
|
|
|
class A {
|
|
|
|
public static function test() {
|
|
|
|
echo get_called_class()."\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class B extends A {
|
|
|
|
public static function testForward() {
|
|
|
|
parent::test();
|
|
|
|
call_user_func("parent::test");
|
|
|
|
call_user_func(array("parent", "test"));
|
|
|
|
self::test();
|
|
|
|
call_user_func("self::test");
|
|
|
|
call_user_func(array("self", "test"));
|
|
|
|
}
|
|
|
|
public static function testNoForward() {
|
|
|
|
A::test();
|
|
|
|
call_user_func("A::test");
|
|
|
|
call_user_func(array("A", "test"));
|
|
|
|
B::test();
|
|
|
|
call_user_func("B::test");
|
|
|
|
call_user_func(array("B", "test"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class C extends B {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
C::testForward();
|
|
|
|
C::testNoForward();
|
|
|
|
|
|
|
|
?>
|
2018-02-19 16:59:41 +08:00
|
|
|
--EXPECT--
|
2008-07-24 18:14:01 +08:00
|
|
|
C
|
|
|
|
C
|
|
|
|
C
|
|
|
|
C
|
|
|
|
C
|
|
|
|
C
|
|
|
|
A
|
|
|
|
A
|
|
|
|
A
|
|
|
|
B
|
|
|
|
B
|
|
|
|
B
|