(PECL stomp >= 0.1.0)
Gets the last stomp error
public string Stomp::error ( void )
Object oriented style (method):
Procedural style:
string stomp_error ( resource
$link
)Gets the last stomp error.
Parameters:
link
Procedural style only: The stomp link identifier returned by stomp_connect().
Returns:
Returns an error string or FALSE
if no error occurred.
Examples:
Object oriented style
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | <?php /* connection */ try { } 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 ); ?> |
The above example will output something similar to:
bool(false) string(43) "Invalid transaction id: unknown-transaction"
Procedural style
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | <?php /* connection */ /* 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 ); ?> |
The above example will output something similar to:
bool(false) string(43) "Invalid transaction id: unknown-transaction"
Please login to continue.