当前位置:Gxlcms > 数据库问题 > 解决Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead

解决Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead

时间:2021-07-01 10:21:17 帮助过:3人阅读

因为最近更新的PHP版本,写sql语句,忽然发现不能用了,上网查了一些原因,找到几个方法如下:

1.禁止php报错

  display_errors = on 改成 display_errors = off

2.将PHP中的mysql用PDO或者是mysqli代替就不会发生这种情况了

3.php设置报警级别

   error_reporting(E_ALL ^ E_DEPRECATED);

 

 

解决Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead

标签:

人气教程排行