首頁 > 後端開發 > php教程 > 关于php构造函数的疑问

关于php构造函数的疑问

WBOY
發布: 2016-06-06 20:15:29
原創
884 人瀏覽過

<code>class Test
{
    public $client;
    
    public function __construct($obj)
    {
        $this->client = new Obj(); 
        //    ......
        //  一系列操作
    }
}

// 代码1
$client = (new Test())->client;
$client->method(); //报错

//代码2
$test = new Test();
$client = $test->client;
$cilent->method(); //正常</code>
登入後複製
登入後複製

上述代码出现的原因是什么?php5.6不是版本的问题。

回复内容:

<code>class Test
{
    public $client;
    
    public function __construct($obj)
    {
        $this->client = new Obj(); 
        //    ......
        //  一系列操作
    }
}

// 代码1
$client = (new Test())->client;
$client->method(); //报错

//代码2
$test = new Test();
$client = $test->client;
$cilent->method(); //正常</code>
登入後複製
登入後複製

上述代码出现的原因是什么?php5.6不是版本的问题。

php什么版本呀?

<code>(new Test($obj))->client</code>
登入後複製

这种表达式5.4以前不支持

<code>class Foo {
    public function method(){
        echo 'hi';
    }
}

class Test {
    public $client;
    public function __construct($obj){
        $this->client = $obj;
    }
}

$obj = new Foo();

// 代码1
$client = (new Test($obj))->client;
$client->method();
</code>
登入後複製
相關標籤:
php
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板