Current Location: Home> Function Categories> get_client_stats

get_client_stats

Returns client statistics for each process.
Name:get_client_stats
Category:Uncategorized
Programming Language:php
One-line Description:Returns client statistics for each process.

Definition and usage

mysqli_get_client_stats() function returns statistics for each process on the client.

Example

Return statistics for each process on the client:

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

grammar

 mysqli_get_client_stats ( )
Similar Functions
Popular Articles