PHP mysqli_get_server_version() Function

The mysqli_get_server_version() function returns the MySQL server version as an integer.

The MySQL server version is returned in the following format: main_version*10000 + minor_version*100 + sub_version. E.g. 5.1.0 is returned as 50100.

Example -

Return the MySQL server version as an integer:

Syntax

mysqli_get_server_version(connection);

ParameterDescription
connectionRequired. Specifies the MySQL connection to use