数据库类实现单利模式

来源:5-3 [php]单例模式

陈诗烁

2015-04-29 15:28

class Database{
    static protected $db;
    private function __construct(){
        
    }
    static function getInstance(){
        echo 111;
        if(self::$db){
            return self::$db;
        }else{
            self::$db = new self();
            return self::$db;
        }
    }
    function where($where){
        return $this;
    }
    function order($order){
        return $this;
    }
    function limit($limit){
        return $this;
    }
}


写回答 关注

1回答

  • boobusy
    2016-01-02 00:08:45

    是单粒不是单利


    慕工程562...

    不是单例吗。。哈哈哈

    2018-09-26 17:17:05

    共 1 条回复 >

大话PHP设计模式

帮助PHPer具备使用设计模式解决工程中复杂逻辑的能力

62160 学习 · 230 问题

查看课程

相似问题