解决The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in 报错

来自:互联网
时间:2018-08-13
阅读:

很明显的提示 MySQL扩展模块就要被放弃使用了,所以请使用mysqli代替

这个说明你的php版本过高造成的。

解决方法:

把mysql的相关模块全都改为mysqli就行了。

比如:

1、mysql_connect 改为mysqli_connect 

2、mysql_query 改为mysqli_query 

3、mysql_close 改为 mysqli_close

返回顶部
顶部