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 -> protocol_version;
$mysqli -> close();
?>
Look at example of procedural style at the bottom.
The mysqli_get_proto_info() function returns the MySQL protocol version.
$mysqli -> protocol_version
mysqli_get_proto_info(
connection)
Parameter | Description |
---|---|
connection | Required. Specifies the MySQL connection to use |
Return Value: | Returns an integer that represents the MySQL protocol version |
---|---|
PHP Version: | 5+ |
Return the MySQL protocol 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_proto_info($con);
mysqli_close($con);
?>
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!