mysqli_get_proto_info()函数返回MySQL使用的协议版本号
mysqli_get_proto_info()函数用于获取有关所使用的MySQL协议(版本)的信息。
mysqli_get_proto_info($con);
序号 | 参数及说明 |
---|---|
1 | con(可选) 这是一个表示与MySQL Server的连接的对象。 |
PHP mysqli_get_proto_info()函数返回一个整数值,该整数值指定所使用的MySQL协议的版本。
此函数最初是在PHP版本5中引入的,并且可以在所有更高版本中使用。
以下示例演示了mysqli_get_proto_info()函数的用法(面向过程风格)-
<?php //建立连接 $con = mysqli_connect("localhost", "root", "password", "mydb"); //协议版本 $info = mysqli_get_proto_info($con); print("协议版本: ".$info); //关闭连接 mysqli_close($con); ?>
输出结果
协议版本: 10
在面向对象的样式中,此函数的语法为$ con-> protocol_version。以下是面向对象样式的此函数的示例-
<?php //建立连接 $con = new mysqli("localhost", "root", "password", "mydb"); //协议版本 $info = $con->protocol_version; print("协议版本: ".$info); //关闭连接 $con -> close(); ?>
输出结果
协议版本: 10
以下是mysqli_get_proto_info()函数的另一个示例-
<?php //建立连接 $con = mysqli_connect("localhost", "root", "password", "mydb"); $code = mysqli_connect_errno(); if($code){ print("连接失败: ".$code); }else{ print("连接成功建立"."\n"); $info = mysqli_get_proto_info($con); print("协议版本: ".$info); } ?>
输出结果
连接成功建立 协议版本: 10
返回 MySQL 协议版本:
<?php $con = mysqli_connect("localhost","root", "password", "mydb"); if (mysqli_connect_errno($con)){ echo "无法连接到MySQL: ".mysqli_connect_error(); } echo mysqli_get_proto_info($con); mysqli_close($con); ?>
输出结果
10