这篇文章主要为大家详细介绍了解决PHP提示Deprecated: MySQL_connect(): The MySQL extension is deprecated的问题,具有一定的参考价值,可以用来参考一下。
感兴趣的小伙伴,下面一起跟随四海网的小玲来看看吧!
将下面代码改为mysqli或PDO即可。
代码如下:
function connectit () {
global $CFG;
mysql_connect($CFG['db_host'], $CFG['db_user'], $CFG['db_pass']) or die(mysql_error());
mysql_select_db($CFG['db_name']);
}
PHP提示Deprecated: MySQL_connect(): The MySQL extension is deprecated的解决方法
PDO:
代码如下:
$dbh = new PDO('mysql:host=localhost;dbname=test', $user, $pass);
PHP提示Deprecated: MySQL_connect(): The MySQL extension is deprecated的解决方法
MYSQLI:
代码如下:
$link = mysqli_connect(
'localhost', /* The host to connect to 连接MySQL地址 */
'user', /* The user to connect as 连接MySQL用户名 */
'password', /* The password to use 连接MySQL密码 */
'world'); /* The default database to query 连接数据库名称*/
if (!$link) {
printf("Can't connect to MySQL Server. Errorcode: %s ", mysqli_connect_error());
exit;
}
PHP提示Deprecated: MySQL_connect(): The MySQL extension is deprecated的解决方法
希望本文所述对大家的PHP程序设计有所帮助。
本文来自:http://www.q1010.com/173/17629-0.html
注:关于解决PHP提示Deprecated: MySQL_connect(): The MySQL extension is deprecated的问题的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。