PHP mysqli_get_server_version() 函数
PHP mysqli_get_server_version() 函数
实例
将 MySQL 服务器版本作为整数返回:
<?php
$con=mysqli_connect("localhost","my_user","my_password","my_db");
// 检测连接
if (mysqli_connect_errno($con))
{
echo "数据库连接失败: " . mysqli_connect_error();
}
echo mysqli_get_server_version($con);
mysqli_close($con);
?>
$con=mysqli_connect("localhost","my_user","my_password","my_db");
// 检测连接
if (mysqli_connect_errno($con))
{
echo "数据库连接失败: " . mysqli_connect_error();
}
echo mysqli_get_server_version($con);
mysqli_close($con);
?>
定义和用法
mysqli_get_server_version() 函数将 MySQL 服务器版本作为整数返回。
MySQL 服务器版本将按照以下格式返回: 主要版本*10000 + 次要版本*100 + 子版本。例如:5.1.0 将返回 50100。
语法
mysqli_get_server_version(connection);
参数 | 描述 |
---|---|
connection | 必需。规定要使用的 MySQL 连接。 |
技术细节
返回值: | 返回一个表示 MySQL 服务器版本的整数。 |
---|---|
PHP 版本: | 5+ |
PHP MySQLi 参考手册
相关文章
- PHP 数据类型
- PHP 运算符
- PHP 包含文件 include 和 require 语句
- PHP array_filter() 函数
- PHP array_intersect_uassoc() 函数
- PHP array_merge() 函数
- PHP array_multisort() 函数
- PHP array_rand() 函数
- PHP array_reduce() 函数
- PHP array_uintersect_assoc() 函数
- PHP array_values() 函数
- PHP current() 函数
- PHP extract() 函数
- PHP prev() 函数
- PHP rsort() 函数
- PHP uasort() 函数
- PHP 5 Array 函数
- PHP cURL 函数
- PHP FTP 函数
- PHP HTTP 函数