PDF (US Ltr)
- 2.4Mb
PDF (A4)
- 2.4Mb
HTML Download (TGZ)
- 251.5Kb
HTML Download (Zip)
- 258.9Kb
Copyright 1997-2021 the PHP Documentation Group.
Session::listClients
Get client list
Description
public array mysql_xdevapi\Session::listClients();
Get a list of client connections to the session's MySQL server.
Parameters
This function has no parameters.
Return Values
An array containing the currently logged clients. The array elements are "client_id", "user", "host", and "sql_session".
Examples
Example 5.121 mysql_xdevapi\Session::listClients
example
<?php
$session = mysql_xdevapi\getSession("mysqlx://user:password@localhost");
$ids = $session->listClients();
var_dump($ids);
?>
The above example will output something similar to:
array(1) { [0]=> array(4) { ["client_id"]=> int(61) ["user"]=> string(4) "root" ["host"]=> string(9) "localhost" ["sql_session"]=> int(72) } }