当前位置:Gxlcms > PHP教程 > PHPthis绑定

PHPthis绑定

时间:2021-07-01 10:21:17 帮助过:1人阅读

这篇文章介绍的内容是关于PHP this绑定,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下

关于this的绑定

class Human {
    public $name = 'lisi';    public function who() {
        echo $this->name;
    }    /*
    public function test() {
        echo $name;
    }
    *//*
和java、c++相比
方法体内想访问调用者的属性,必须用$this
如果不加,则理解为方法内部的一个局部变量.
*/}$a = new Human();echo $a->name,'<br >'; //lisi$a->who(); //lisi//$a->test();

这里写图片描述

以上就是PHP this绑定的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行