PHP mysqli_connect() 函数
PHP mysqli_connect() 函数
实例
打开一个到 MySQL 服务器的新的连接:
<?php
$con=mysqli_connect("localhost","wrong_user","my_password","my_db");
// 检查连接
if (!$con)
{
die("连接错误: " . mysqli_connect_error());
}
?>
$con=mysqli_connect("localhost","wrong_user","my_password","my_db");
// 检查连接
if (!$con)
{
die("连接错误: " . mysqli_connect_error());
}
?>
定义和用法
mysqli_connect() 函数打开一个到 MySQL 服务器的新的连接。
语法
mysqli_connect(host,username,password,dbname,port,socket);
参数 | 描述 |
---|---|
host | 可选。规定主机名或 IP 地址。 |
username | 可选。规定 MySQL 用户名。 |
password | 可选。规定 MySQL 密码。 |
dbname | 可选。规定默认使用的数据库。 |
port | 可选。规定尝试连接到 MySQL 服务器的端口号。 |
socket | 可选。规定 socket 或要使用的已命名 pipe。 |
技术细节
返回值: | 返回一个代表到 MySQL 服务器的连接的对象。 |
---|---|
PHP 版本: | 5+ |
PHP MySQLi 参考手册
相关文章
- PHP 变量
- PHP 数据类型
- PHP date() 函数
- PHP 文件处理
- PHP Secure E-mails
- PHP 异常处理
- PHP array() 函数
- PHP array_intersect_uassoc() 函数
- PHP array_key_exists() 函数
- PHP array_key_first() 函数
- PHP array_merge() 函数
- PHP array_merge_recursive() 函数
- PHP array_product() 函数
- PHP array_walk() 函数
- PHP arsort() 函数
- PHP asort() 函数
- PHP krsort() 函数
- PHP pos() 函数
- PHP prev() 函数
- PHP HTTP 函数