首頁 >後端開發 >php教程 >PHP 类属性问题

PHP 类属性问题

WBOY
WBOY原創
2016-06-06 20:06:53817瀏覽

为什么类内部使用属性不需要用$符号

class classname {

<code>        $attribute;
        function get() {
                echo $this->attribute; 
                //  为什么不是$this->$attribute; 
        }</code>

}

回复内容:

为什么类内部使用属性不需要用$符号

class classname {

<code>        $attribute;
        function get() {
                echo $this->attribute; 
                //  为什么不是$this->$attribute; 
        }</code>

}

http://php.net/manual/zh/language.oop5.properties.php

多看文档吧,加$又是个变量,

假设你赋值了$attribute = 'age',$this->$attribute相当于调用$this->age

而你没有为attribute赋值时那你调用了什么?

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn