ddddddddddddddd 发表于 2013-12-17 17:20:10

php5.5 mysql_pconnect()函数废弃

mysql_pconnect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead /home/data/www/hoomic-plugin/system/database/drivers/mysql/mysql_driver.php 91

这个地方有人去解决下么?
1,替换掉这个91行之后,又引出一些地方报错。有谁已经解决了,求个代码
                return @mysql_pconnect($this->hostname, $this->username, $this->password);


                return @mysqli_connect("p:".$this->hostname, $this->username, $this->password);

ddddddddddddddd 发表于 2013-12-17 18:07:33

好吧,,错了。已经提供mysqli的链接库。修改一下配置即可

$db['default']['dbdriver'] = 'mysqli';
页: [1]
查看完整版本: php5.5 mysql_pconnect()函数废弃