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 the future,看意思就很明了,說mysql_connect這個模組將在未來棄用,請你使用mysqli或PDO來替代。 mysqli 更嚴謹安全高效
解決方法1:
禁止php報錯
display_errors = On
改為
display_errors = Off
這個服務器
是給朋友用的,^_^),不能這做,讓他們改程序吧,看方案2.解決方法2:
error_reporting(E_ALL ^ E_DEPRECATED);