Object oriented style
string mysqli::get_client_info();
Procedural style
string mysqli_get_client_info(
mysqli link);
Returns a string that represents the MySQL client library version.
Return Values
A string that represents the MySQL client library version
Examples
Example 20.122. mysqli_get_client_info
<?php
/* We don't need a connection to determine
the version of mysql client library */
printf("Client library version: %s\n", mysqli_get_client_info());
?>
See Also
mysqli_get_client_version
mysqli_get_server_info
mysqli_get_server_version
20.7.3.9.20.
mysqli_get_client_stats
Copyright 1997-2012 the PHP Documentation Group. [2230]
•
mysqli_get_client_stats
Returns client per-process statistics
Description
array mysqli_get_client_stats();
Returns client per-process statistics. Available only with mysqlnd.
Parameters
Return Values
Returns an array with client stats if success,
Examples
Example 20.123. A
<?php
$link = mysqli_connect();
print_r(mysqli_get_client_stats());
?>
MySQL Improved Extension (Mysqli)
mysqli_get_client_stats
otherwise.
FALSE
example
2375
Need help?
Do you have a question about the 5.0 and is the answer not in the manual?
Questions and answers