Query: mysqli_get_client_version
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
MYSQLI_GET_CLIENT_VERSION(3) 1 MYSQLI_GET_CLIENT_VERSION(3) mysqli_get_client_version - Returns the MySQL client version as an integer Object oriented styleSYNOPSISint$mysqli->client_version ()DESCRIPTIONProcedural style int mysqli_get_client_version (mysqli $link) Returns client version number as an integer.RETURN VALUESA number that represents the MySQL client library version in format: main_version*10000 + minor_version *100 + sub_version. For example, 4.1.0 is returned as 40100. This is useful to quickly determine the version of the client library to know if some capability exits.EXAMPLESExample #1 mysqli_get_client_version <?php /* We don't need a connection to determine the version of mysql client library */ printf("Client library version: %d ", mysqli_get_client_version()); ?>SEE ALSOmysqli_get_client_info(3), mysqli_get_server_info(3), mysqli_get_server_version(3). PHP Documentation Group MYSQLI_GET_CLIENT_VERSION(3)
Related Man Pages |
---|
mysqli_error(3) - php |
mysql_get_client_info(3) - php |
mysqli_get_server_version(3) - php |
mysqli_kill(3) - php |
mysqli_set_charset(3) - php |