最新的Web开发教程
 

PHP mysqli_get_connection_stats() Function

<PHP库MySQLi参考

返回有关客户端连接统计:

<?php
$con=mysqli_connect("localhost","my_user","my_password","my_db");
// Check connection
if (mysqli_connect_errno())
  {
  echo "Failed to connect to MySQL: " . mysqli_connect_error();
  }

print_r(mysqli_get_connection_stats($con));

mysqli_close($con);
?>

定义和用法

mysqli_get_connection_stats()对客户端连接函数返回的统计数据。


句法

mysqli_get_connection_stats( connection ) ;

参数 描述
connection 需要。 指定MySQL连接使用

技术细节

返回值: 返回与成功连接统计的数组。 FALSE失败
PHP版本: 5.3+

<PHP库MySQLi参考