(PECL stomp >= 0.1.0)
Stomp::getSessionId -- stomp_get_session_id — Gets the current stomp session ID
객체 기반 형식 (method):
절차식 형식:
$link
)Gets the current stomp session ID.
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"