php man page for mysqli_get_client_version

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 style

SYNOPSIS
int$mysqli->client_version ()
DESCRIPTION
Procedural style int mysqli_get_client_version (mysqli $link) Returns client version number as an integer.
RETURN VALUES
A 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.
EXAMPLES
Example #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 ALSO
mysqli_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
Similar Topics in the Unix Linux Community
Simple rules of the UNIX.COM forums:
Rules for Homework &amp; Coursework Questions Forum
Please Welcome Don Cragun as Lead Moderator
The Order of the Wizard's Hat - Lifetime Achievement Award 2019 - Congrats to Don Cragun
The Order of the Wizard's Hat - Lifetime Achievement Award 2019 - Congrats to Wolf Machowitsch