php5.5过渡--mysql连接

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php5.5过渡--mysql连接相关的知识,希望对你有一定的参考价值。

以前:

// $conn=mysql_connect("localhost","root","");
// $db=mysql_select_db("web_scoring_system",$conn)or die("数据库连接失败:".mysql_error());
// mysql_query("set names utf8");

新:

$link = mysqli_connect(
‘localhost‘, /* The host to connect to 连接MySQL地址 */
‘root‘, /* The user to connect as 连接MySQL用户名 */
‘‘, /* The password to use 连接MySQL密码 */
‘dbname‘); /* The default database to query 连接数据库名称*/

if (!$link) {
printf("Can‘t connect to MySQL Server. Errorcode: %s ", mysqli_connect_error());
exit;
}
mysqli_query($link,‘set names utf8‘);













以上是关于php5.5过渡--mysql连接的主要内容,如果未能解决你的问题,请参考以下文章

php7已经放弃mysql_connect() 支持,php5.5可以,是废弃函数

Linux环境PHP5.5以上连接SqlServer2008

编译安装LAMP环境:httpd-2.4+mysql5.6+php5.5

无法建立从工作台到 nodejs 的本地 mysql 连接

使用流浪环境时无法连接Websocket

具有扩展 PDOStatement 的 PDO 在设置为 NULL 时无法断开连接