Heim  >  Artikel  >  Backend-Entwicklung  >  单例模式连接数据库的方法

单例模式连接数据库的方法

不言
不言Original
2018-07-04 16:02:112381Durchsuche

这篇文章主要介绍了关于单例模式连接数据库的方法,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下

<?php

class Db {
    static private $_instance;
    static private $_connectSource;
    private $_dbConfig = array(
        &#39;host&#39; => &#39;127.0.0.1&#39;,
        &#39;user&#39; => &#39;root&#39;,
        &#39;password&#39; => &#39;&#39;,
        &#39;database&#39; => &#39;video&#39;,
    );

    private function __construct() {
    }

    static public function getInstance() {
        if(!(self::$_instance instanceof self)) {
            self::$_instance = new self();
        }
        return self::$_instance;
    }

    public function connect() {
        if(!self::$_connectSource) {
            self::$_connectSource = @mysql_connect($this->_dbConfig[&#39;host&#39;], $this->_dbConfig[&#39;user&#39;], $this->_dbConfig[&#39;password&#39;]);    

            if(!self::$_connectSource) {
                throw new Exception(&#39;mysql connect error &#39; . mysql_error());
                //die(&#39;mysql connect error&#39; . mysql_error());
            }
            
            mysql_select_db($this->_dbConfig[&#39;database&#39;], self::$_connectSource);
            mysql_query("set names UTF8", self::$_connectSource);
        }
        return self::$_connectSource;
    }
}
/*$connect = Db::getInstance()->connect();

$sql = "select * from video";
$result = mysql_query($sql, $connect);
echo mysql_num_rows($result);
var_dump($result);*/

以上就是本文的全部内容,希望对大家的学习有所帮助,更多相关内容请关注PHP中文网!

相关推荐:

使用fastcgi_finish_request提高页面响应速度的方法

Das obige ist der detaillierte Inhalt von单例模式连接数据库的方法. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn