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


PHP MySQL::_instance方法代碼示例

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


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

示例1: getInstance

 /**
  * Get singelton instance
  *
  * @return MySQL
  */
 public static function getInstance()
 {
     if (!isset(self::$_instance)) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }
開發者ID:matthewbaggett,項目名稱:mysql2pdo,代碼行數:12,代碼來源:MySQL.php

示例2: getInstance

 public static function getInstance($host = '', $name = '', $pwd = '', $dBase = '')
 {
     if (FALSE == self::$_instance instanceof self) {
         self::$_instance = new self($host, $name, $pwd, $dBase);
     }
     return self::$_instance;
 }
開發者ID:ufowiner,項目名稱:RZ-Keven,代碼行數:7,代碼來源:data.php

示例3: MySQL

 /**
  * Создаёт, либо возвращает единственный экземпляр MyQSL
  * 
  * @param string $server
  * @param string $user
  * @param string $password
  */
 public static function &creator($server, $user, $password)
 {
     if (self::$_instance == NULL) {
         self::$_instance = new MySQL($server, $user, $password);
     }
     return self::$_instance;
 }
開發者ID:EntityFX,項目名稱:QuikiJAR,代碼行數:14,代碼來源:MySQL.php

示例4: GetInstance

 static function GetInstance($host, $user, $password, $database)
 {
     if (self::$_instance == null || self::$mysqli != null) {
         self::$_instance = new MySQL();
         self::$mysqli = new mysqli($host, $user, $password, $database);
         if (mysqli_connect_errno()) {
             printf("數據庫連接失敗!:%s\n", mysqli_connect_error());
         }
     }
     return self::$_instance;
 }
開發者ID:chao666,項目名稱:share,代碼行數:11,代碼來源:MySQL.php

示例5: getInstance

 /**
  * Singleton accessor to the database instance
  * -- change this to use a md5 on the $params to allow for multiple single instances
  */
 public static function getInstance($params = NULL)
 {
     if (self::$_instance == NULL) {
         self::$_instance = new MySQL($params);
     }
     return self::$_instance;
 }
開發者ID:bamcod,項目名稱:PubCodeHub,代碼行數:11,代碼來源:MySQL.php


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