php8.5
Home/ Manual/ stomp / stomp/ Stomp::getSessionId

Stomp::getSessionId

PHP function Edit on GitHub ✎

(PECL stomp >= 0.1.0)

Gets the current stomp session ID

Description

Oop (method):

Stomp::getSessionId(): string|false

Procedural:

stomp_get_session_id(resource $link): string|false

Gets the current stomp session ID.

Parameters

Return Values

String session id on successFalseforfailure.

Examples

Oop

php
<?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);

?>

The above example will output something similar to:

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

Procedural

php
<?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);

?>

The above example will output something similar to:

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

Source: reference/stomp/stomp/getsessionid.xml · from the official PHP manual (php/doc-en)