您的位置:首页 > 博客中心 > 数据库 >

【解决方案】Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed

时间:2022-03-14 06:35

Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in F:\Program Files (x86)\wamp\www\testmysql.php on line 2

技术分享

<?php 
$link = mysql_connect('localhost','root',''); 
if (!$link) { 
	die('Could not connect to MySQL: ' . mysql_error()); 
} 
echo 'Connection OK'; mysql_close($link); 
?> 


解决方案

将mysql改为mysqli

<?php 
$link = mysqli_connect('localhost','root',''); 
if (!$link) { 
<span style="white-space:pre">	</span>die('Could not connect to MySQL: ' . mysqli_error()); 
} 
echo 'Connection OK'; mysqli_close($link); 
?> 

技术分享

本类排行

今日推荐

热门手游