PHP mysqli_get_proto_info() 函数
PHP mysqli_get_proto_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_proto_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_proto_info($con);
mysqli_close($con);
?>
定义和用法
mysqli_get_proto_info() 函数返回 MySQL 协议版本。
语法
mysqli_get_proto_info(connection);
参数 | 描述 |
---|---|
connection | 必需。规定要使用的 MySQL 连接。 |
技术细节
返回值: | 返回一个表示 MySQL 协议版本的整数。 |
---|---|
PHP 版本: | 5+ |
PHP MySQLi 参考手册
相关文章
- PHP 类型比较
- PHP 超级全局变量
- PHP While 循环
- PHP date() 函数
- PHP 包含文件 include 和 require 语句
- PHP Cookie
- PHP array_intersect_ukey() 函数
- PHP array_keys() 函数
- PHP array_merge() 函数
- PHP array_pad() 函数
- PHP array_replace() 函数
- PHP array_replace_recursive() 函数
- PHP array_uintersect() 函数
- PHP array_uintersect_assoc() 函数
- PHP array_unique() 函数
- PHP end() 函数
- PHP natcasesort() 函数
- PHP 5 Date/Time 函数
- PHP 5 Directory 函数
- PHP Mail 函数