Stomp::getSessionId

stomp_get_session_id

(PECL stomp >= 0.1.0)

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

說明

物件導向風格 (method):

public string Stomp::getSessionId ( void )

程序化風格:

string stomp_get_session_id ( resource $link )

Gets the current stomp session ID.

參數

link

僅對過程化樣板:由 stomp_connect() 回傳的 stomp 連結標識符。

回傳值

string session id on success 或者在失敗時回傳 FALSE.

範例

Example #1 物件導向風格

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

?>

上例的輸出類似於:

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

Example #2 程序化風格

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

?>

上例的輸出類似於:

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

add a note add a note

User Contributed Notes

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