mysqli 更嚴謹 安全 高效
php 5個版本,5.2、5.3、5.4、5.5,怕跟不上時代,新的服務器直接上5.5,但是程序出現如下錯誤:Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in,看意思就很明了,說mysql_connect這個模塊將在未來棄用,請你使用mysqli或者PDO來替代。
解決方法1:
禁止php報錯
display_errors = On
改為
display_errors = Off
鑒於這個服務器都是給用戶用的,有時候他們需要報錯(…都是給朋友用的,^_^),不能這做,讓他們改程序吧,看方案2.
解決方法2:
<?php
error_reporting(E_ALL ^ E_DEPRECATED);