Stomp::getSessionId

stomp_get_session_id

(PECL stomp >= 0.1.0)

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

˵��

��������� (method):

public Stomp::getSessionId ( void ) : string

���̻����:

stomp_get_session_id ( resource $link ) : string

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"