php this self 用法与区别
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php this self 用法与区别相关的知识,希望对你有一定的参考价值。
this 这 self 自己
$this 指的是实例化的对象,self指的是当前类
$db = new Imooc\Database(); var_dump($db->where(‘id=1‘)); Database 类返回的是$this, 打印出来可以看到$this就是Database这个类的实例化的对象. 现在看self这个关键词 class Database { private static $db; static function getInstance() { if (self::$db) { return self::$db; } else { self::$db = new self(); return self::$db; } } } 还是Database这个类 ,定义了静态私有变量(只有类才能调用),由于$this是指向对象所以用$this->db会报错, self指向Database这个类的本身,self()相当于实例化了Database这个类的对象.
以上是关于php this self 用法与区别的主要内容,如果未能解决你的问题,请参考以下文章
new self() 与 new static() 用法区别