PHP中引用类的属性
Posted 小Y爱学前端
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP中引用类的属性相关的知识,希望对你有一定的参考价值。
在一个类中,可以访问一个特殊的指针--$this。如果当前类的一个属性为$attribute,则当在该类中通过一个操作设置或访问该变量时,可以使用$this->attribute来引用。
class classname { public $attribute; function operation($param) { $this->attibute = $param echo $this->attribute; } }
以上是关于PHP中引用类的属性的主要内容,如果未能解决你的问题,请参考以下文章
PHP 中的 $this, static , self ,parent 等等关键字的总结