PHP mysqli_get_host_info() 函数
PHP mysqli_get_host_info() 函数
实例
返回 MySQL 服务器主机名和连接类型:
<?php
$con=mysqli_connect("localhost","my_user","my_password","my_db");
// 检测连接
if (mysqli_connect_errno($con))
{
echo "数据库连接失败: " . mysqli_connect_error();
}
echo mysqli_get_host_info($con);
mysqli_close($con);
?>
$con=mysqli_connect("localhost","my_user","my_password","my_db");
// 检测连接
if (mysqli_connect_errno($con))
{
echo "数据库连接失败: " . mysqli_connect_error();
}
echo mysqli_get_host_info($con);
mysqli_close($con);
?>
定义和用法
mysqli_get_host_info() 函数返回 MySQL 服务器主机名和连接类型。
语法
mysqli_get_host_info(connection);
参数 | 描述 |
---|---|
connection | 必需。规定要使用的 MySQL 连接。 |
技术细节
返回值: | 返回一个表示 MySQL 服务器主机名和连接类型的字符串。 |
---|---|
PHP 版本: | 5+ |
PHP MySQLi 参考手册
相关文章
- PHP $_GET 变量
- PHP date() 函数
- PHP Secure E-mails
- PHP array_chunk() 函数
- PHP array_flip() 函数
- PHP array_intersect_uassoc() 函数
- PHP array_intersect_ukey() 函数
- PHP array_merge() 函数
- PHP array_udiff_assoc() 函数
- PHP array_walk_recursive() 函数
- PHP asort() 函数
- PHP end() 函数
- PHP in_array() 函数
- PHP krsort() 函数
- PHP ksort() 函数
- PHP 5 Array 函数
- PHP 5 Calendar 函数
- PHP 5 Directory 函数
- PHP Libxml 函数
- PHP PDO