PHP mysqli_get_proto_info() 函數(shù)
PHP mysqli_get_proto_info() 函數(shù)
實例
返回 MySQL 協(xié)議版本:
<?php
$con=mysqli_connect("localhost","my_user","my_password","my_db");
// 檢測連接
if (mysqli_connect_errno($con))
{
echo "數(shù)據(jù)庫連接失敗: " . mysqli_connect_error();
}
echo mysqli_get_proto_info($con);
mysqli_close($con);
?>
$con=mysqli_connect("localhost","my_user","my_password","my_db");
// 檢測連接
if (mysqli_connect_errno($con))
{
echo "數(shù)據(jù)庫連接失敗: " . mysqli_connect_error();
}
echo mysqli_get_proto_info($con);
mysqli_close($con);
?>
定義和用法
mysqli_get_proto_info() 函數(shù)返回 MySQL 協(xié)議版本。
語法
mysqli_get_proto_info(connection);
參數(shù) | 描述 |
---|---|
connection | 必需。規(guī)定要使用的 MySQL 連接。 |
技術(shù)細節(jié)
返回值: | 返回一個表示 MySQL 協(xié)議版本的整數(shù)。 |
---|---|
PHP 版本: | 5+ |

相關(guān)文章
- PHP 類型比較
- PHP 超級全局變量
- PHP While 循環(huán)
- PHP date() 函數(shù)
- PHP 包含文件 include 和 require 語句
- PHP Cookie
- PHP array_intersect_ukey() 函數(shù)
- PHP array_keys() 函數(shù)
- PHP array_merge() 函數(shù)
- PHP array_pad() 函數(shù)
- PHP array_replace() 函數(shù)
- PHP array_replace_recursive() 函數(shù)
- PHP array_uintersect() 函數(shù)
- PHP array_uintersect_assoc() 函數(shù)
- PHP array_unique() 函數(shù)
- PHP end() 函數(shù)
- PHP natcasesort() 函數(shù)
- PHP 5 Date/Time 函數(shù)
- PHP 5 Directory 函數(shù)
- PHP Mail 函數(shù)