PHP Conference Japan 2024

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