解决方法1:
禁止php报错
display_errors = On
改为
display_errors = Off
鉴于这个服务器都是给用户用的,有时候他们需要报错(…都是给朋友用的,^_^),不能这做,让他们改程序吧,看方案2.
解决方法2:
error_reporting(E_ALL ^ E_DEPRECATED);
以上就介绍了解决Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future:,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。