首页 > 代码库 > PHP单例模式实现数据库连接
PHP单例模式实现数据库连接
class DB { private $db_config = ‘./config.php‘; private static $_instance; private function __construct() { if (file_exists($this->db_config)) { require $this->db_config; self::$_instance = new mysqli($db_host, $db_name, $db_passwd); } else { throw new Exception(‘not found database configuration file.‘); } } /** * 单例方法 用户访问实例的静态方法 * * @return void */ public function getInstance() { if (self::$_instance == null) { self::$_instance = new self; } file_put_contents(‘2.txt‘, var_export(self::$_instance,true), FILE_APPEND); return self::$_instance; } /** * 防止对象被克隆 * * @return void */ private function __clone() { trigger_error(‘Clone is not allow!‘, E_USER_ERROR); } }
试着用单例模式写了一个数据库连接,在执行的时候,发现通过 getInstance() 方法获取到的只是 $db_config ,并没有获取到实例化后的 mysqli 对象,想请问下,问题出在哪里?
还有哪些地方可以做优化?
PHP单例模式实现数据库连接
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。