downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

Stomp::getReadTimeout> <Stomp::__destruct
[edit] Last updated: Fri, 24 May 2013

view this page in

Stomp::error

stomp_error

(PECL stomp >= 0.1.0)

Stomp::error -- stomp_errorGets the last stomp error

Descrição

Estilo orientado à objeto (method):

public string Stomp::error ( void )

Estilo procedural:

string stomp_error ( resource $link )

Gets the last stomp error.

Parâmetros

link

Procedural style only: The stomp link identifier returned by stomp_connect().

Valor Retornado

Returns an error string or FALSE if no error occurred.

Exemplos

Exemplo #1 Estilo orientado à objeto

<?php

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

var_dump($stomp->error());

if (!
$stomp->abort('unknown-transaction', array('receipt' => 'foo'))) {
    
var_dump($stomp->error());
}

/* close connection */
unset($stomp);

?>

O exemplo acima irá imprimir algo similar à:

bool(false)
string(43) "Invalid transaction id: unknown-transaction"

Exemplo #2 Estilo procedural

<?php

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

/* check connection */
if (!$link) {
    die(
'Connection failed: ' stomp_connect_error());
}

var_dump(stomp_error($link));

if (!
stomp_abort($link'unknown-transaction', array('receipt' => 'foo'))) {
    
var_dump(stomp_error($link));
}

/* close connection */
stomp_close($link);

?>

O exemplo acima irá imprimir algo similar à:

bool(false)
string(43) "Invalid transaction id: unknown-transaction"



add a note add a note User Contributed Notes Stomp::error - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites