As of Version 8.0.17 the Session::listClients() method has not been implemented yet.
(No version information available, might only be in Git)
Session::listClients — Renvoie la liste des clients
Renvoie la liste des connexions client au serveur MySQL de la session.
Cette fonction ne contient aucun paramètre.
Un tableau contenant les clients actuellement connectés. Les éléments du tableau sont "client_id", "user", "host" et "sql_session".
Exemple #1 Exemple de mysql_xdevapi\Session::listClients()
<?php
$session = mysql_xdevapi\getSession("mysqlx://user:password@localhost");
$ids = $session->listClients();
var_dump($ids);
?>
Résultat de l'exemple ci-dessus est similaire à :
array(1) { [0]=> array(4) { ["client_id"]=> int(61) ["user"]=> string(4) "root" ["host"]=> string(9) "localhost" ["sql_session"]=> int(72) } }
As of Version 8.0.17 the Session::listClients() method has not been implemented yet.