在PHP中使用静态方法访问私有

为什么这有效? 我的意思是,访问私有变量。

class Test {
    private $q = 0;
    public function __construct() {
        $this->q = 1;
    }
    public static function EpicConstruct() {
        $test = new self();
        $test->q = 2;
        return $test;
    }
}

$test = Test::EpicConstruct();

因为您正在以正确的上下文访问成员,即:定义私有成员的类。

链接地址: http://www.djcxy.com/p/69431.html

上一篇: Accessing private from static method in PHP

下一篇: Parse error: syntax error, unexpected T