欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP 类属性问题

程序员文章站 2022-05-17 13:04:28
...
为什么类内部使用属性不需要用$符号

class classname {

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

}

回复内容:

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

class classname {

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

}

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

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

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

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

相关标签: php