Session::getServerVersion

(没有版本信息可用,可能只存在于 Git 中)

Session::getServerVersion获取服务器版本

描述

public mysql_xdevapi\Session::getServerVersion(): int

检索会话的 MySQL 服务器版本。

参数

此函数没有参数。

返回值

会话的 MySQL 服务器版本,作为整数,例如“80012”。

示例

示例 #1 mysql_xdevapi\Session::getServerVersion() 示例

<?php
$session
= mysql_xdevapi\getSession("mysqlx://user:password@localhost");

$version = $session->getServerVersion();

var_dump($version);

上面的示例将输出类似于

int(80012)
添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top