>백엔드 개발 >PHP 튜토리얼 >PHP 类属性问题

PHP 类属性问题

WBOY
WBOY원래의
2016-06-06 20:06:53825검색

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

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으로 문의하세요.