PHP提示Deprecated: mysql_connect(): The mysql extension is dep_PHP
程序员文章站
2022-06-12 13:36:07
...
本文实例讲述了PHP提示 Deprecated: mysql_connect(): The mysql extension is deprecated的解决方法,在PHP程序开发中常会遇到这类问题。分享给大家供大家参考,具体的解决方法如下:
将下面代码改为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']); }
PDO:
$dbh = new PDO('mysql:host=localhost;dbname=test', $user, $pass);
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程序设计有所帮助。
下一篇: ORA-01555问题分析及解决
推荐阅读
-
PHP提示Deprecated: mysql_connect(): The mysql extension is deprecated的解决方法
-
IIS下PHP连接数据库提示mysql undefined function mysql_connect()
-
Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO
-
PHP提示Deprecated: mysql_connect(): The mysql extension is deprecated的解决方法
-
PHP提示Deprecated: mysql_connect(): The mysql extension is dep_PHP
-
IIS下PHP连接数据库提示mysql undefined function mysql_connect()
-
IIS下PHP连接数据库提示mysql undefined function mysql_connect()
-
PHP提示Deprecated: mysql_connect(): The mysql extension is dep_PHP
-
defined IIS下PHP连接数据库提示mysql undefined function mysql_connect
-
PHP提示Deprecated: mysql_connect(): The mysql extension is deprecated的解决方法,deprecated_PHP教程