php man page for stomp_get_session_id

Query: stomp_get_session_id

OS: php

Section: 3

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

STOMP_GET_SESSION_ID(3) 						 1						   STOMP_GET_SESSION_ID(3)

Stomp::getSessionId - Gets the current stomp session ID

       Object oriented style (method):

SYNOPSIS
public string Stomp::getSessionId (void )
DESCRIPTION
Procedural style: string stomp_get_session_id (resource $link) Gets the current stomp session ID.
PARAMETERS
o $link -Procedural style only: The stomp link identifier returned by stomp_connect(3).
RETURN VALUES
string session id on success or FALSE on failure.
EXAMPLES
Example #1 Object oriented style <?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); ?> The above example will output something similar to: string(35) "ID:php.net-52873-1257291895530-4:14" Example #2 Procedural style <?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); ?> The above example will output something similar to: string(35) "ID:php.net-52873-1257291895530-4:14" PHP Documentation Group STOMP_GET_SESSION_ID(3)
Related Man Pages
mysqli_error(3) - php
mysqli_get_host_info(3) - php
mysqli_get_server_info(3) - php
mysqli_ping(3) - php
stomp_get_read_timeout(3) - php
Similar Topics in the Unix Linux Community
Does WIN2K stomp on the boot record like NT?
How to close TELNET Connection
Cannot find localhost
At command for Linux job not working from php
Terminating a process - is this code best practice?