(PECL stomp >= 0.1.0)
Gets the current stomp session ID
public string Stomp::getSessionId ( void )
Object oriented style (method):
Procedural style:
string stomp_get_session_id ( resource
$link
)Gets the current stomp session ID.
Parameters:
link
Procedural style only: The stomp link identifier returned by stomp_connect().
Returns:
string session id on success or FALSE
on failure.
Examples:
Object oriented style
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | <?php /* connection */ try { } catch (StompException $e ) { die ( 'Connection failed: ' . $e ->getMessage()); } var_dump( $stomp ->getSessionId()); /* close connection */ unset( $stomp ); ?> |
The above example will output something similar to:
string(35) "ID:php.net-52873-1257291895530-4:14"
Procedural style
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | <?php /* connection */ /* 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:
string(35) "ID:php.net-52873-1257291895530-4:14"
Please login to continue.