Stomp::__construct

stomp_connect

(PECL stomp >= 0.1.0)

Stomp::__construct -- stomp_connectOpens a connection

Description

Object-oriented style (constructor):

publicStomp::__construct(
    string$broker = ini_get("stomp.default_broker_uri"),
    string$username = ?,
    string$password = ?,
    array$headers = ?
)

Procedural style:

stomp_connect(
    string$broker = ini_get("stomp.default_broker_uri"),
    string$username = ?,
    string$password = ?,
    array$headers = ?
): resource

Opens a connection to a stomp compliant Message Broker.

Parameters

broker

The broker URI

username

The username.

password

The password.

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

VersionDescription
PECL stomp 1.0.1 The headers parameter was added

Examples

Example #1 Object-oriented style

<?php


try {
$stomp = new Stomp('tcp://localhost:61613');
} catch(
StompException $e) {
die(
'Connection failed: ' . $e->getMessage());
}


unset($stomp);

?>

Example #2 Procedural style

<?php


$link = stomp_connect('ssl://localhost:61612');


if (!$link) {
die(
'Connection failed: ' . stomp_connect_error());
}


stomp_close($link);

?>
To Top