(没有版本信息可用,可能只在 Git 中)
Session::close — 关闭会话
此函数没有参数。
true
如果会话关闭。
示例 #1 mysql_xdevapi\Session::close() 示例
<?php
$session = mysql_xdevapi\getSession("mysqlx://user:password@localhost");
$schema = $session->getSchema("addressbook");
$table = $schema->getTable("names");
$session->close();