PHP mysqli_get_client_info() function returns the MySQL client version as a string.
Syntax
string mysqli_get_client_info(void);
Parameter | Description |
---|---|
NA | NA |
Return Values : | Returns a string that represents the MySQL client library version. |
<?php // Get MySQL client version echo mysqli_get_client_info(); ?>