array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'de', ), 'this' => array ( 0 => 'stomp.getsessionid.php', 1 => 'Stomp::getSessionId', 2 => 'Gets the current stomp session ID', ), 'up' => array ( 0 => 'class.stomp.php', 1 => 'Stomp', ), 'prev' => array ( 0 => 'stomp.getreadtimeout.php', 1 => 'Stomp::getReadTimeout', ), 'next' => array ( 0 => 'stomp.hasframe.php', 1 => 'Stomp::hasFrame', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/stomp/stomp/getsessionid.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

Stomp::getSessionId

stomp_get_session_id

(PECL stomp >= 0.1.0)

Stomp::getSessionId -- stomp_get_session_idGets the current stomp session ID

Beschreibung

Objektorientierter Stil (method):

public Stomp::getSessionId(): string|false

Prozeduraler Stil:

stomp_get_session_id(resource $link): string|false

Gets the current stomp session ID.

Parameter-Liste

link

Nur für prozedurale Aufrufe: Die Stomp-Verbindung, die von stomp_connect() zurückgegeben wurde.

Rückgabewerte

String session id on successBei einem Fehler wird false zurückgegeben..

Beispiele

Beispiel #1 Objektorientierter Stil

<?php

/* connection */
try {
$stomp = new Stomp('tcp://localhost:61613');
} catch(
StompException $e) {
die(
'Connection failed: ' . $e->getMessage());
}

var_dump($stomp->getSessionId());

/* close connection */
unset($stomp);

?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

string(35) "ID:php.net-52873-1257291895530-4:14"

Beispiel #2 Prozeduraler Stil

<?php

/* connection */
$link = stomp_connect('ssl://localhost:61612');

/* check connection */
if (!$link) {
die(
'Connection failed: ' . stomp_connect_error());
}

var_dump(stomp_get_session_id($link));

/* close connection */
stomp_close($link);

?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

string(35) "ID:php.net-52873-1257291895530-4:14"