(没有版本信息可用,可能只存在于 Git 中)
Session::getServerVersion — 获取服务器版本
此函数没有参数。
会话的 MySQL 服务器版本,作为整数,例如“80012”。
示例 #1 mysql_xdevapi\Session::getServerVersion() 示例
<?php
$session = mysql_xdevapi\getSession("mysqlx://user:password@localhost");
$version = $session->getServerVersion();
var_dump($version);
上面的示例将输出类似于
int(80012)