PHP - 访问其他类类型变量

时间:2015-06-25 04:09:55

标签: php

我是PHP OO的新手,我对定义一个类有疑问。 例如,我有2个类:

class A
{
    // public $b = new B;   <-- I want something like this
    // But the instruction above is error. I have search and found another way without error

    public $b;
    public function __construct()
    {
        $b = new B;
    }
}

class B
{
    public $value = 1;
}

$a = new A;
// echo $a->b->value; <--Error!

如何访问$a->b->value?如果B类($a->b->c->value)中有一个C类变量怎么办?

谢谢。

0 个答案:

没有答案