PHP mysqli_get_host_info() 函數(shù)
PHP mysqli_get_host_info() 函數(shù)
實(shí)例
返回 MySQL 服務(wù)器主機(jī)名和連接類型:
<?php
$con=mysqli_connect("localhost","my_user","my_password","my_db");
// 檢測(cè)連接
if (mysqli_connect_errno($con))
{
echo "數(shù)據(jù)庫連接失敗: " . mysqli_connect_error();
}
echo mysqli_get_host_info($con);
mysqli_close($con);
?>
$con=mysqli_connect("localhost","my_user","my_password","my_db");
// 檢測(cè)連接
if (mysqli_connect_errno($con))
{
echo "數(shù)據(jù)庫連接失敗: " . mysqli_connect_error();
}
echo mysqli_get_host_info($con);
mysqli_close($con);
?>
定義和用法
mysqli_get_host_info() 函數(shù)返回 MySQL 服務(wù)器主機(jī)名和連接類型。
語法
mysqli_get_host_info(connection);
參數(shù) | 描述 |
---|---|
connection | 必需。規(guī)定要使用的 MySQL 連接。 |
技術(shù)細(xì)節(jié)
返回值: | 返回一個(gè)表示 MySQL 服務(wù)器主機(jī)名和連接類型的字符串。 |
---|---|
PHP 版本: | 5+ |

相關(guān)文章
- PHP $_GET 變量
- PHP date() 函數(shù)
- PHP Secure E-mails
- PHP array_chunk() 函數(shù)
- PHP array_flip() 函數(shù)
- PHP array_intersect_uassoc() 函數(shù)
- PHP array_intersect_ukey() 函數(shù)
- PHP array_merge() 函數(shù)
- PHP array_udiff_assoc() 函數(shù)
- PHP array_walk_recursive() 函數(shù)
- PHP asort() 函數(shù)
- PHP end() 函數(shù)
- PHP in_array() 函數(shù)
- PHP krsort() 函數(shù)
- PHP ksort() 函數(shù)
- PHP 5 Array 函數(shù)
- PHP 5 Calendar 函數(shù)
- PHP 5 Directory 函數(shù)
- PHP Libxml 函數(shù)
- PHP PDO