當前位置: 首頁>>代碼示例>>PHP>>正文


PHP DB::_instance方法代碼示例

本文整理匯總了PHP中DB::_instance方法的典型用法代碼示例。如果您正苦於以下問題:PHP DB::_instance方法的具體用法?PHP DB::_instance怎麽用?PHP DB::_instance使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在DB的用法示例。


在下文中一共展示了DB::_instance方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: getInstance

 /**
  * Возвращет единственный экземпляр данного класса.
  * @return object - объект класса DB
  */
 public static function getInstance()
 {
     if (is_null(self::$_instance)) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }
開發者ID:Accami,項目名稱:BravelCMS,代碼行數:11,代碼來源:db.class.php

示例2: getInstance

 public static function getInstance()
 {
     if (!isset(self::$_instance)) {
         self::$_instance = new DB();
     }
     return self::$_instance;
 }
開發者ID:aguvasu,項目名稱:Secure-PHP-OOP-user-reg-login-system-with-Boostrap,代碼行數:7,代碼來源:DB.php

示例3: getInstance

 public function getInstance()
 {
     if (self::$_instance === null) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }
開發者ID:blrik,項目名稱:bPost,代碼行數:7,代碼來源:db.php

示例4: instance

 /**
  * 單例
  * @return instance
  */
 public static function instance()
 {
     if (self::$_instance === NULL) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }
開發者ID:panchao1,項目名稱:my_php_code,代碼行數:11,代碼來源:DB.php

示例5: singleton

 static function singleton()
 {
     if (!self::$_instance instanceof self) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }
開發者ID:erikm66,項目名稱:framedb,代碼行數:7,代碼來源:db.php

示例6: GetConn

 public static function GetConn()
 {
     if (self::$_instance == null) {
         self::$_instance = new Database();
     }
     return self::$_instance->GetConn();
 }
開發者ID:ndroo,項目名稱:squealing-funicular,代碼行數:7,代碼來源:database.class.php

示例7: unsetInstance

 public static function unsetInstance()
 {
     self::getInstance()->type = NULL;
     self::getInstance()->_adapter->closeConnection();
     self::getInstance()->_adapter = NULL;
     self::$_instance = NULL;
 }
開發者ID:rjon76,項目名稱:netspotapp,代碼行數:7,代碼來源:classDB.php

示例8: getInstance

 protected static function getInstance()
 {
     if (!self::$_instance instanceof self) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }
開發者ID:yjf0503,項目名稱:Mall,代碼行數:7,代碼來源:DB.class.php

示例9: getInstance

 public static function getInstance()
 {
     if (null === self::$_instance) {
         self::$_instance = new DB(Config::get('db.host'), Config::get('db.user'), Config::get('db.password'), Config::get('db.db_name'));
     }
     return self::$_instance;
 }
開發者ID:qconer,項目名稱:php_kamgaz,代碼行數:7,代碼來源:db.class.php

示例10: singleton

 /**
  * M�todo que se usa para obtener una �nica instancia del objeto DB.
  * Si dicha instancia no existe, la crea. Una vez creada la devuelve.
  *
  * @return DB Instancia del objeto DB
  */
 public static function singleton()
 {
     if (self::$_instance == null) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }
開發者ID:jfcalcerrada,項目名稱:intrageca,代碼行數:13,代碼來源:db.php

示例11: instance

 /**
  * Singleton initial.
  */
 public static function instance()
 {
     if (empty(self::$_instance) === true) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }
開發者ID:stereojesus,項目名稱:classes,代碼行數:10,代碼來源:DB.php

示例12: instance

 public static function instance($reset = false)
 {
     if (!isset(self::$_instance) || $reset) {
         self::$_instance = new DB();
     }
     return self::$_instance;
 }
開發者ID:Wicloz,項目名稱:UniversityWebsite,代碼行數:7,代碼來源:DB.php

示例13: getInstance

 public static function getInstance()
 {
     if (!isset(self::$_instance) || get_class(self::$_instance) !== 'DB') {
         self::$_instance = new DB();
     }
     return self::$_instance;
 }
開發者ID:armourjami,項目名稱:armourtake,代碼行數:7,代碼來源:DB.php

示例14: _getInstance

 public static function _getInstance()
 {
     if (!self::$_instance instanceof self) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }
開發者ID:ravilgithub,項目名稱:files_from_portfolio,代碼行數:7,代碼來源:db.php

示例15: connect

 public static function connect()
 {
     if (!isset(self::$_instance)) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }
開發者ID:sydorenkovd,項目名稱:Registration-test-item,代碼行數:7,代碼來源:DB.php


注:本文中的DB::_instance方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。