码迷,mamicode.com
首页 > Web开发 > 详细

php this self 用法与区别

时间:2016-11-09 13:18:36      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:self this

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 用法与区别

标签:self this

原文地址:http://12258667.blog.51cto.com/12248667/1870845

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!