(无版本信息可用,可能仅在 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();