简体中文
mysqli_get_connection_stats() 函数返回有关客户端连接的统计信息。
mysqli_get_connection_stats()
返回有关客户端连接的统计信息:
<?php $con = mysqli_connect("localhost","my_user","my_password","my_db"); print_r(mysqli_get_connection_stats($con)); ?>