PHP mysqli_get_proto_info() Function

Definition

The mysqli_get_proto_info() function returns the MySQL protocol version.

Syntax

Object oriented style

string $mysqli->protocol_version;

Procedural style

int mysqli_get_proto_info ( mysqli $link )

Parameter

ParameterIs requiredDescription
connectionRequired.MySQL connection

Return

The mysqli_get_proto_info() function returns the MySQL protocol version.

Example 1

The following code gets the MySQL protocol version.


<?php//from w  w w  .j  a v a 2 s . c om
$con=mysqli_connect("localhost","my_user","my_password","my_db");

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

echo mysqli_get_proto_info($con);

mysqli_close($con);
?>

Example 2

Object oriented style


<?php/*from  w  w  w  .  j av  a 2  s. c o m*/
$mysqli = new mysqli("localhost", "my_user", "my_password");

if (mysqli_connect_errno()) {
    printf("Connect failed: %s\n", mysqli_connect_error());
    exit();
}

print $mysqli->protocol_version;

$mysqli->close();
?>




















Home »
  PHP Tutorial »
    Function reference »




PHP Array Functions
PHP Calendar Functions
PHP Class Functions
PHP Data Type Functions
PHP Date Functions
PHP File Functions
PHP Image Functions
PHP Math Functions
PHP MySQLi Functions
PHP SimpleXML Functions
PHP String Functions
PHP XML Functions
PHP Zip Functions