解决The mysql extension is deprecated and will be removed in the future: use mysql
导读
很明显的提示 mysql扩展模块就要被放弃使用了,所以请使用mysqli代替
这个说明你的php版本过高造成的。
解决方法:
把mysql的相关模块全都改为mysqli就行了。
比如:
1、mysql_connect 改为mysqli_connect
2、mysql_query 改为mysqli_query
3、mysql_close 改为 mysqli_close
评论(0)