Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

stomp_get_session_id(3) [php man page]

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)

Check Out this Related Man Page

STOMP_CONNECT(3)							 1							  STOMP_CONNECT(3)

Stomp::__construct - Opens a connection

       Object oriented style (constructor):

SYNOPSIS
public Stomp::__construct ([string $broker = ini_get("stomp.default_broker_uri")], [string $username], [string $password], [array $headers]) DESCRIPTION
Procedural style: resource stomp_connect ([string $broker = ini_get("stomp.default_broker_uri")], [string $username], [string $password], [array $head- ers]) Opens a connection to a stomp compliant Message Broker. PARAMETERS
o $broker - The broker URI o $username - The username. o $password - The password. o $headers -Associative array containing the additional headers (example: receipt). RETURN VALUES
Note A transaction header may be specified, indicating that the message acknowledgment should be part of the named transaction. CHANGELOG
+--------+-----------------------------------+ |Version | | | | | | | Description | | | | +--------+-----------------------------------+ | 1.0.1 | | | | | | | The $headers parameter was added | | | | +--------+-----------------------------------+ EXAMPLES
Example #1 Object oriented style <?php /* connection */ try { $stomp = new Stomp('tcp://localhost:61613'); } catch(StompException $e) { die('Connection failed: ' . $e->getMessage()); } /* close connection */ unset($stomp); ?> Example #2 Procedural style <?php /* connection */ $link = stomp_connect('ssl://localhost:61612'); /* check connection */ if (!$link) { die('Connection failed: ' . stomp_connect_error()); } /* close connection */ stomp_close($link); ?> PHP Documentation Group STOMP_CONNECT(3)
Man Page

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Does WIN2K stomp on the boot record like NT?

My home PC is dual boot with Linux and Win98. I want to upgrade both to a newer version, and have the Linux CD's now. What I need to know is does Win2K Pro stomp (write over LiLo) on the boot record like NT (2 Replies)
Discussion started by: 98_1LE
2 Replies

2. Shell Programming and Scripting

A very quick question

Just a super quick question: how do you put a link in your php code. I want to make a link to something in /tmp directory. i.e. how do you put a href into php, I think it's done a bit differently. thanks john (1 Reply)
Discussion started by: jmg5
1 Replies

3. Shell Programming and Scripting

session limit in php

Sirs, How can i set the session.gc_maxlifetime value by php coding. Thanks ArunKumar (4 Replies)
Discussion started by: arunkumar_mca
4 Replies

4. Shell Programming and Scripting

How to close TELNET Connection

Hi, I have logged into a system using Telnet and iam unable to close the connection to connect to the next system using arrays. Iam getting error "Connection Timed Out" Iam using net::Telnet module. Please suggest.. (1 Reply)
Discussion started by: sudhakaryadav
1 Replies

5. Shell Programming and Scripting

Cannot find localhost

I get a "not found" error from this localhost/choice.php ethan@meow:~$ ping 127.0.0.1 PING 127.0.0.1 (127.0.0.1) 56(84) bytes of data. 64 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.025 ms 64 bytes from 127.0.0.1: icmp_seq=2 ttl=64 time=0.036 m and this ethan@meow:~$ mysql -u... (4 Replies)
Discussion started by: Meow613
4 Replies

6. Shell Programming and Scripting

At command for Linux job not working from php

I have a script .sh with a curl command in it: curl --digest "http://xxxxxxx.xxx/mail.php?email=xxxx@xxx.xx"; from terminal this works good : ./script.sh //(mail arrives in my box) from php this works good: shell_exec('./phpsc.sh'); // (mail arrives in my box) from terminal this... (13 Replies)
Discussion started by: extra93
13 Replies

7. Shell Programming and Scripting

Terminating a process - is this code best practice?

Hi Folks - I am building a process to kill a list of services. Sometimes, there's a service that hangs therefore I need to add an additionla peice of code to kill all instances of a service if it exists. Here is that portion of code: echo... (10 Replies)
Discussion started by: SIMMS7400
10 Replies

8. UNIX for Beginners Questions & Answers

Telnet failed to localhost.

Hi, I am trying telnet to localhost 514. But the connection is refusing. Port does not appear in netstat. IP table service is also off. (5 Replies)
Discussion started by: Nishit
5 Replies

9. Post Here to Contact Site Administrators and Moderators

Stomp has created two threads recently that can't be read

In the past five minutes stomp has created two thread titled "Bug: empty lines get sometimes duplicated in new post". When I try to read either of those threads, Safari gives me a window containing the message shown in the attachment. (11 Replies)
Discussion started by: Don Cragun
11 Replies