PHP mysqli_get_client_stats() 函数
PHP mysqli_get_client_stats() 函数
实例
返回有关客户端每个进程的统计:
<?php
$con=mysqli_connect("localhost","my_user","my_password","my_db");
// 检测连接
if (mysqli_connect_errno($con))
{
echo "数据库连接失败: " . mysqli_connect_error();
}
print_r(mysqli_get_client_stats());
mysqli_close($con);
?>
$con=mysqli_connect("localhost","my_user","my_password","my_db");
// 检测连接
if (mysqli_connect_errno($con))
{
echo "数据库连接失败: " . mysqli_connect_error();
}
print_r(mysqli_get_client_stats());
mysqli_close($con);
?>
定义和用法
mysqli_get_client_stats() 函数返回有关客户端每个进程的统计。
语法
mysqli_get_client_stats();
技术细节
返回值: | 如果成功则返回一个带有客户端统计的数组,如果失败则返回 FALSE。 |
---|---|
PHP 版本: | 5.3+ |
PHP MySQLi 参考手册
相关文章
- PHP 数组排序
- PHP 多维数组
- PHP Session
- PHP JSON
- PHP array_combine() 函数
- PHP array_diff() 函数
- PHP array_diff_key() 函数
- PHP array_diff_ukey() 函数
- PHP array_intersect_assoc() 函数
- PHP array_key_last() 函数
- PHP array_map() 函数
- PHP array_push() 函数
- PHP array_sum() 函数
- PHP array_udiff() 函数
- PHP ksort() 函数
- PHP list() 函数
- PHP shuffle() 函数
- PHP sizeof() 函数
- PHP 5 Date/Time 函数
- PHP Filter 函数