本文整理汇总了PHP中Mysql::_instance方法的典型用法代码示例。如果您正苦于以下问题:PHP Mysql::_instance方法的具体用法?PHP Mysql::_instance怎么用?PHP Mysql::_instance使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mysql
的用法示例。
在下文中一共展示了Mysql::_instance方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getInstance
public static function getInstance($conf = null)
{
if (!self::$_instance instanceof self) {
self::$_instance = new self($conf);
}
return self::$_instance;
}
示例2: init
public static function init($server = null, $username = null, $password = null, $database = null, $is_permantent = false)
{
if (self::$_instance == null) {
self::$_instance = new Mysql($server, $username, $password, $database, $is_permantent);
}
return self::$_instance;
}
示例3: getInstance
/**
* 静态方法,单例访问统一入口
* @return Singleton返回应用中的唯一对象实例
*/
public static function getInstance()
{
if (!self::$_instance instanceof self) {
self::$_instance = new self();
}
return self::$_instance;
}
示例4: init
public static function init()
{
if (null === self::$_instance) {
self::$_instance = new Mysql();
}
return self::$_instance;
}
示例5: get_instance
/** static public function get_instance
* Returns the singleton instance
* of the MySQL Object as a reference
*
* @param array optional configuration array
* @action optionally creates the instance
* @return MySQL Object reference
*/
public static function get_instance($config = null)
{
try {
if (is_null(self::$_instance)) {
self::$_instance = new Mysql($config);
}
self::$_instance->test_connection();
self::$_instance->_log(__METHOD__ . ' --------------------------------------');
} catch (MySQLException $e) {
throw $e;
}
return self::$_instance;
}