解决Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in
3 回答
已采纳
ballieas
TA贡献1条经验 获得超2个赞
这个错误不影响代码的执行,意思就是PHP不建议使用mysql的扩展函数,现在基本上感觉都还在用,所以在php.ini中的error_reporting中屏蔽掉就好了
建议error_reporting为:E_ALL & ~E_DEPRECATED & ~E_STRICT
添加回答
举报
0/150
提交
取消