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


PHP mysql::instance方法代碼示例

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


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

示例1: getInstance

 public static function getInstance()
 {
     if (is_null(self::$instance)) {
         self::$instance = new self();
     }
     return self::$instance;
 }
開發者ID:jabouzi,項目名稱:contacts,代碼行數:7,代碼來源:mysql.php

示例2: getInstance

 public static function getInstance($db_host, $db_name, $db_pass, $db_database, $conn, $code)
 {
     if (!isset(self::$instance)) {
         self::$instance = new mysql($db_host, $db_name, $db_pass, $db_database, $conn, $code);
     }
     return self::$instance;
 }
開發者ID:qingye5786,項目名稱:webstar.v5.0.2,代碼行數:7,代碼來源:mysql_db_class.php

示例3: get_instance

 public static function get_instance()
 {
     if (self::$instance == null) {
         self::$instance = new self();
     }
     return self::$instance;
 }
開發者ID:jeremywong1992,項目名稱:companyBook,代碼行數:7,代碼來源:mysql.class.php

示例4: getInstance

 public static function getInstance()
 {
     if (self::$instance == NULL) {
         self::$instance = new self();
     }
     return self::$instance;
 }
開發者ID:highestgoodlikewater,項目名稱:filmSpider,代碼行數:7,代碼來源:mysql.class.php

示例5: getDbIns

 /**
  * [getIns 獲取單例]
  * @return [type] [description]
  */
 public static function getDbIns()
 {
     if (self::$instance instanceof self) {
         return self::$instance;
     }
     return self::$instance = new self();
 }
開發者ID:neilchou,項目名稱:phpbase,代碼行數:11,代碼來源:mysql.class.php

示例6: i

 public static function i($connection = '')
 {
     if (!isset(self::$instance)) {
         list($host, $user, $pass, $db) = explode(':', $connection);
         self::$instance = new mysql();
         self::$instance->connect($host, $user, $pass, $db);
     }
     return self::$instance;
 }
開發者ID:Git-Host,項目名稱:sms,代碼行數:9,代碼來源:mysql.class.php

示例7: getInstance

 /**
  * 單例模式
  */
 public static function getInstance($params)
 {
     if (!self::$instance) {
         self::$instance = new self($params);
     }
     return self::$instance;
 }
開發者ID:rainbow88,項目名稱:hummel,代碼行數:10,代碼來源:mysql.class.php


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