PHP Deprecated: mysql_connect(): The mysql extension is deprecated...的解决
[b]现象:[/b][quote]PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in D:\wwwroot\ldkweixin\install.php on line 206[/quote][font=宋体, Arial,][url=http://www.ttlsa.com/php/]php[/url] 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来替代。[/font]
[font=宋体, Arial,][p=30, 2, left][b]解决方法1:[/b][/p][p=30, 2, left]禁止php报错[/p][font=Consolas,][table=98%,rgb(255, 255, 255)]
[tr=none][td]display_errors = On[/td][/tr]
[/table]
[table=98%,rgb(255, 255, 255)]
[tr=none][td]改为[/td][/tr]
[/table]
[table=98%,rgb(255, 255, 255)]
[tr=none][td]display_errors = Off[/td][/tr]
[/table]
[/font]
[p=30, 2, left]鉴于这个服务器都是给用户用的,有时候他们需要报错(…都是给朋友用的,^_^),不能这做,让他们改程序吧,看方案2.[/p][p=30, 2, left][b]解决方法2:[/b][/p][p=30, 2, left]常用的php语法连接[url=http://lib.csdn.net/base/14]MySQL[/url]如下[/p][font=Consolas,][table=98%,rgb(255, 255, 255)]
[tr=none][td]<?php[/td][/tr]
[/table]
[table=98%,rgb(255, 255, 255)]
[tr=none][td]$link = mysql_connect('localhost', 'user', 'password');[/td][/tr]
[/table]
[table=98%,rgb(255, 255, 255)]
[tr=none][td]mysql_select_db('dbname', $link);[/td][/tr]
[/table]
[table=98%,rgb(255, 255, 255)]
[tr=none][td] [/td][/tr]
[/table]
[table=98%,rgb(255, 255, 255)]
[tr=none][td]改成mysqi[/td][/tr]
[/table]
[table=98%,rgb(255, 255, 255)]
[tr=none][td]<?php[/td][/tr]
[/table]
[table=98%,rgb(255, 255, 255)]
[tr=none][td]$link = mysqli_connect('localhost', 'user', 'password', 'dbname');[/td][/tr]
[/table]
[/font]
[p=30, 2, left]常用mysql建表SQL如下[/p][font=Consolas,][table=98%,rgb(255, 255, 255)]
[tr=none][td]<?php[/td][/tr]
[/table]
[table=98%,rgb(255, 255, 255)]
[tr=none][td]// 老的[/td][/tr]
[/table]
[table=98%,rgb(255, 255, 255)]
[tr=none][td]mysql_query('CREATE TEMPORARY TABLE `table`', $link);[/td][/tr]
[/table]
[table=98%,rgb(255, 255, 255)]
[tr=none][td]// 新的[/td][/tr]
[/table]
[table=98%,rgb(255, 255, 255)]
[tr=none][td]mysqli_query($link, 'CREATE TEMPORARY TABLE `table`');[/td][/tr]
[/table]
[/font]
[p=30, 2, left][b]解决方法三:[/b]
在php程序代码里面设置报警级别[/p][font=Consolas,][table=98%,rgb(255, 255, 255)]
[tr=none][td]<?php[/td][/tr]
[/table]
[table=98%,rgb(255, 255, 255)]
[tr=none][td]error_reporting(E_ALL ^ E_DEPRECATED);[/td][/tr]
[/table]
[/font]
[p=30, 2, left]Deprecated的问题就这样解决掉了,不过还是建议大家尽快取消mysql的用户,全部都走向mysqli或者mysqlnd等等。mysql确实是太不安全而且太老旧了。[/p][/font]
页:
[1]