本文整理匯總了PHP中MySql::instance方法的典型用法代碼示例。如果您正苦於以下問題:PHP MySql::instance方法的具體用法?PHP MySql::instance怎麽用?PHP MySql::instance使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類MySql
的用法示例。
在下文中一共展示了MySql::instance方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: getInstance
/**
* 靜態方法,返回數據庫連接實例
*/
public static function getInstance()
{
if (self::$instance == null) {
self::$instance = new MySql();
}
return self::$instance;
}
示例2: Instance
/**
* Get instance returns the currently instantiated object of this DB class.
* This forces only one connection to the MySQL server
* @return DB object
*/
public static function Instance()
{
global $config;
if (!self::$instance) {
self::$instance = new self($config['database']);
}
return self::$instance;
}