Session::listClients
(No version information available, might only be in Git)
Session::listClients — Get client list
说明
Get a list of client connections to the session's MySQL server.
参数
此函数没有参数。
返回值
An array containing the currently logged clients. The array elements are "client_id", "user", "host", and "sql_session".
示例
示例 #1 mysql_xdevapi\Session::listClients() example
<?php
$session = mysql_xdevapi\getSession("mysqlx://user:password@localhost");
$ids = $session->listClients();
var_dump($ids);
?>
以上示例的输出类似于:
array(1) { [0]=> array(4) { ["client_id"]=> int(61) ["user"]=> string(4) "root" ["host"]=> string(9) "localhost" ["sql_session"]=> int(72) } }
+添加备注
用户贡献的备注 1 note
shaun at shaunfreeman dot co dot uk ¶
5 years ago
As of Version 8.0.17 the Session::listClients() method has not been implemented yet.
备份地址:http://www.lvesu.com/blog/php/mysql-xdevapi-session.listclients.php