문제

Given the following class hierarchy:

class ParentClass {
    private static $_test;

    public function returnTest() {
        return static::$_test;
    }
}
class ChildClass extends ParentClass {
    // intentionally left blank
}
$child = new ChildClass();
echo $child->returnTest();

The output generated is the following error message:
Fatal error: Cannot access property ChildClass::$_test
Is there a way to prevent late static binding from happening? Since I am calling a function of a parent class that is not overwritten, I feel like I should be allowed to do something like the above.

도움이 되었습니까?

해결책

Use return self::$_test instead of return static::$_test.

This insures that you access the field $_test of the class where returnTest is defined.

See http://www.php.net/manual/en/language.oop5.late-static-bindings.php for reference.

다른 팁

You are calling a static property from an instantiated class. Just use the name of the class:

return static::$_test;
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top