Session::getClientId

(No version information available, might only be in Git)

Session::getClientIdGet client ID

Açıklama

public mysql_xdevapi\Session::getClientId ( void ) : integer

Get ID of the connected client.

Değiştirgeler

Bu işlevin değiştirgesi yoktur.

Dönen Değerler

ID of the connected client.

Örnekler

Örnek 1 mysql_xdevapi\Session::getClientId() example

<?php
$session 
mysql_xdevapi\getSession("mysqlx://user:password@localhost");

$clientid $session->getClientId();

var_dump($clientid);

Yukarıdaki örnek şuna benzer bir çıktı üretir:

int(53)