(无版本信息可用,可能仅在Git中)
Session::getSchemas — 获取模式
此函数没有参数。
一个包含表示会话可用的所有模式的对象的数组。
示例 #1 mysql_xdevapi\Session::getSchemas() 示例
<?php
$session = mysql_xdevapi\getSession("mysqlx://user:password@localhost");
$schemas = $session->getSchemas();
print_r($schemas);
以上示例将输出类似于以下内容
Array ( [0] => mysql_xdevapi\Schema Object ( [name] => addressbook ) [1] => mysql_xdevapi\Schema Object ( [name] => information_schema ) ...