问答详情
源自:5-3 [php]单例模式

数据库类实现单利模式

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;
    }
}


提问者:陈诗烁 2015-04-29 15:28

个回答

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

    是单粒不是单利