以下是我的网站如何连接到mysql数据库,直到php升级到版本5.4
public function core() {
if (!@$this->dbCon = mysql_connect($this->host, $this->user,$this->password)) {
exit('Error: Could not make a database connection using ' .
$this->user . '@' . $this->host);
}
但现在,我得到Error: Could not make a database connectionz using user@host
如何使用PDO重写此代码?
答案 0 :(得分:0)
不推荐使用mysql函数。尝试使用mysqli_connect函数。