如何在父类中使用私有函数初始化扩展类

时间:2013-10-17 07:07:08

标签: php class inheritance extends

我是扩展课程的新手,遇到问题就是问题。 我试图通过使用与构造不同的函数来启动变量。 如果你看下面,它应该更有意义。

class A
{
    private static $_var;

    function __construct($EGGS)
    {
        $this->_var=$EGGS
    }

    private static function _ini()
    {
        $this->_var="hard coded value";
    }
}

class B extends A
{
     //How do I initiate private static $_var with the _ini() instead of using
     //the __construct here in good old class B?
}

$a = new A("foo");//works just fine
$b = new B;

0 个答案:

没有答案