PHP mysqli_get_connection_stats() 函数
PHP mysqli_get_connection_stats() 函数返回有关客户端连接的统计。
( PHP >= 5.3 )
函数原型
mysqli_get_connection_stats( connection )
参数
参数 | 描述 |
---|---|
connection | 必需。规定要使用的 MySQL 连接 |
返回值
如果成功则返回一个带有连接统计的数组,如果失败则返回 FALSE
范例
输出有关客户端连接的统计
<?php $conn = mysqli_connect("localhost","root","","test"); // 检测连接 if (mysqli_connect_errno($conn)) { echo "数据库连接失败: " , mysqli_connect_error(); exit(); } print_r(mysqli_get_connection_stats($conn)); mysqli_close($conn);