PHP mysqli_get_client_info() Function
Definition
The mysqli_get_client_info() function returns the MySQL client library version.
Syntax
mysqli_get_client_info(connection);
Parameter
Parameter | Is Required | Description |
---|---|---|
connection | Optional. | MySQL connection |
Return
Return the MySQL client library version.
Example
Get the MySQL client library version.
<?php/* www . j a va2s. c o m*/
$con=mysqli_connect("localhost","my_user","my_password","my_db");
if (mysqli_connect_errno($con)){
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
print_r(mysqli_get_client_info($con));
mysqli_close($con);
?>