Stomp::getSessionId

stomp_get_session_id

(PECL stomp >= 0.1.0)

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

Descrição

Estilo orientado a objetos (method):

public Stomp::getSessionId(): string|false

Estilo procedural:

stomp_get_session_id(resource $link): string|false

Gets the current stomp session ID.

Parâmetros

link

Somente no estilo procedural: O identificador do link stomp retornado por stomp_connect().

Valor Retornado

string session id on success ou false em caso de falha.

Exemplos

Exemplo #1 Estilo orientado a objetos

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

?>

O exemplo acima produzirá algo semelhante a:

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

Exemplo #2 Estilo procedural

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

?>

O exemplo acima produzirá algo semelhante a:

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

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top