PHP
Referenzliste
mysqli_get_proto_info
MySQLi Funktionen
Befehl:
int mysqli_get_proto_info ( mysqli $link )
Parameter-Liste:
Beschreibung | |
---|---|
Nur bei prozeduralem Aufruf: Ein von mysqli_connect() oder mysqli_init() zurückgegebenes Verbindungsobjekt. |
Rückgabewerte:
Gibt eine ganze Zahl, die die Protokollversion.
Beschreibung:
Gibt eine ganze Zahl, die die MySQL-Protokoll-Version durch die Verbindung von der
Link
-Parameter dargestellt wird, verwendet. Aktiv in Version:
(PHP 5, PHP 7)
Siehe auch:
mysqli_get_proto_info() - Beispiel: Objektorientierter Stil
(mysqli::$protocol_version)
(mysqli::$protocol_version)
Eingabe:
<?php $mysqli = new mysqli("localhost", "my_user", "my_password"); /* check connection */ if (mysqli_connect_errno()) { printf("Connect failed: %s\n", mysqli_connect_error()); exit(); } /* print protocol version */ printf("Protocol version: %d\n", $mysqli->protocol_version); /* close connection */ $mysqli->close(); ?>
Ausgabe:
Protocol version: 10
mysqli_get_proto_info() - Beispiel 2: Prozeduraler Stil
(mysqli::$protocol_version)
(mysqli::$protocol_version)
Eingabe:
<?php $link = mysqli_connect("localhost", "my_user", "my_password"); /* check connection */ if (mysqli_connect_errno()) { printf("Connect failed: %s\n", mysqli_connect_error()); exit(); } /* print protocol version */ printf("Protocol version: %d\n", mysqli_get_proto_info($link)); /* close connection */ mysqli_close($link); ?>
Ausgabe:
Protocol version: 10
MySQLi Funktionen