PHP mysqli_get_host_info() 函数 PHP mysqli_get_connection_stats() 函数 PHP mysqli_get_proto_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); ?> 定义和用法 mysqli_get_host_info() 函数返回 MySQL 服务器主机名和连接类型。 语法 mysqli_get_host_info( _connection_ ) _;_ 参数 描述 _connection_ 必需。规定要使用的 MySQL 连接。 技术细节 返回值: 返回一个表示 MySQL 服务器主机名和连接类型的字符串。 PHP 版本: 5+ PHP mysqli_get_connection_stats() 函数 PHP mysqli_get_proto_info() 函数