本文主要介紹了php實現的mongoDB單例模式操作類,結合實例形式分析了php基於單例模式操作MongoDB數據庫的數據庫封裝類相關實現技巧,需要的朋友可以參考下,希望能幫助到大家。
下面是封裝的程式碼
class Mongo_db { private static $cli; /** * 不允许初始化 */ private function __construct() { $config = Config::get('config.mongo_config'); if(empty($config)){ $this->throwError('无法连接数据库!'); } if (!empty($config["user_name"])) { $this->mongo = new MongoClient("mongodb://{$config['user_name']}:{$config['password']}@{$config['host']}:{$config['port']}"); }else { $this->mongo = new MongoClient($config['host'] . ':' . $config['port']); } } /** * 单例模式 * @return Mongo|null */ public static function cli(){ if(!(self::$cli instanceof self)){ self::$cli = new self(); } return self::$cli->mongo; } } $mongo = Mongo_db::cli()->test->mycollection; // test 是选择的数据库 , mycollection 是选择的表。 因为使用单例模式,所以,只会实例一个资源具体操作再参考下面的文章吧
相關推薦:
以上是php實作的mongoDB單例模式實例操作分享的詳細內容。更多資訊請關注PHP中文網其他相關文章!