首页 > 代码库 > qeephp学习

qeephp学习

controller中调用find()操作数据库时报错:

Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in E:\xampp\htdocs\qeemaster_jingly\library\db\adapter\mysql.php on line 68

解决方案:E:\xampp\htdocs\qeemaster_jingly\library\db\adapter\mysql.php 中

$this->_conn =mysql_connect($host, $this->_dsn[‘login‘], $this->_dsn[‘password‘], $force_new);

改为$this->_conn =@mysql_connect($host, $this->_dsn[‘login‘], $this->_dsn[‘password‘], $force_new);

qeephp学习