PHP mysqli_get_proto_info() 函数



定义和用法

mysqli_get_proto_info() 函数用于获取有关使用的 MySQL 协议(版本)的信息。

语法

mysqli_get_proto_info($con);

参数

序号 参数及描述
1

con(可选)

这是一个表示与 MySQL 服务器连接的对象。

返回值

PHP mysqli_get_proto_info() 函数返回一个整数值,指定使用的 MySQL 协议的版本。

PHP 版本

此函数首次在 PHP 5 版本中引入,并在所有后续版本中均有效。

示例

以下示例演示了 mysqli_get_proto_info() 函数(在过程式风格中)的用法 -

<?php
   //Creating a connection
   $con = mysqli_connect("localhost", "root", "password", "mydb");

   //Protocol Version
   $info = mysqli_get_proto_info($con);
   print("Protocol Version: ".$info);

   //Closing the connection
   mysqli_close($con);
?>

这将产生以下结果 -

Protocol Version: 10

示例

在面向对象风格中,此函数的语法为 $con -> protocol_version。以下是此函数在面向对象风格中的示例 -

<?php
   //Creating a connection
   $con = new mysqli("localhost", "root", "password", "mydb");

   //Protocol Version
   $info = $con->protocol_version;
   print("Protocol Version: ".$info);

   //Closing the connection
   $con -> close();
?>

这将产生以下结果 -

Protocol Version: 10

示例

以下是 mysqli_get_proto_info() 函数的另一个示例 -

<?php
   //Creating a connection
   $con = mysqli_connect("localhost", "root", "password", "mydb");

   $code = mysqli_connect_errno();
   if($code){
      print("Connection Failed: ".$code);
   }else{
      print("Connection Established Successfully"."\n");
      $info = mysqli_get_proto_info($con);
      print("Protocol Version: ".$info);
   }
?>

这将产生以下结果 -

Connection Established Successfully
Protocol Version: 10

示例

<?php
   $con = mysqli_connect("localhost","root", "password", "mydb");
   
   if (mysqli_connect_errno($con)){
      echo "Failed to connect to MySQL: ".mysqli_connect_error();
   }
   echo mysqli_get_proto_info($con);
   
   mysqli_close($con);
?>

这将产生以下结果 -

10
php_function_reference.htm
广告