目录

PHP mysqli get_connection_stats() 函数

❮ PHP MySQLi 参考

示例

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

<?php
$con = mysqli_connect("localhost","my_user","my_password","my_db");
print_r(mysqli_get_connection_stats($con));
?>


定义和用法

mysqli_get_connection_stats() 函数返回有关客户端连接的统计信息。


语法

面向对象风格:

$mysqli -> get_connection_stats()

程序风格:

mysqli_get_connection_stats( connection)

参数值

Parameter Description
connection Required. Specifies the MySQL connection to use

技术细节

返回值: 返回一个包含成功连接统计信息的数组。失败时为 FALSE
PHP 版本: 5.3+

❮ PHP MySQLi 参考