PHP中的$this代表当前的类还是方法?
A _ Q _i_
A _ Q _i_ 2021-10-10 19:51:03
0
5
953
class DBmodel{
    private $name;
    publice function delete($name){
        $this->name = $name;
    }
}

里面的$this代表的是整个类DBmodel,还是类方法delete ?

A _ Q _i_
A _ Q _i_

全部回复(2)
逆旅行人

$this代表的是对象,而$this所在环境为类内部的方法内部,所以$this对象是在类内部访问

A _ Q _i_
//如果里面有构造方法:
function __construct(){
$this->name = $name;
}

里面的$this代表的就是构造方法本身吗?

  • 回复 $this->name 代表的是这个类中的name属性
    autoload 作者 2021-10-14 09:49:31
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板