PHP server_info / mysqli_get_server_info() Function

❮ PHP MySQLi Reference

Example - Object Oriented style

Return the MySQL protocol version:

<?php
$mysqli = new mysqli("localhost","my_user","my_password","my_db");

if ($mysqli -> connect_errno) {
  echo "Failed to connect to MySQL: " . $mysqli -> connect_error;
  exit();
}

echo $mysqli -> server_info;

$mysqli -> close();
?>

Look at example of procedural style at the bottom.


Definition and Usage

The server_info / mysqli_get_server_info() function returns the MySQL server version.


Syntax

Object oriented style:

$mysqli -> server_info

Procedural style:

mysqli_get_server_info(connection)

Parameter Values

Parameter Description
connection Required. Specifies the MySQL connection to use

Technical Details

Return Value: A string that represents the MySQL server version
PHP Version: 5+

Example - Procedural style

Return the MySQL server version:

<?php
$con = mysqli_connect("localhost","my_user","my_password","my_db");

if (mysqli_connect_errno()) {
  echo "Failed to connect to MySQL: " . mysqli_connect_error();
  exit();
}

echo mysqli_get_server_info($con);

mysqli_close($con);
?>


❮ PHP MySQLi Reference
Copyright 1999-2023 by Refsnes Data. All Rights Reserved.