Query: stomp_error
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
STOMP_ERROR(3) 1 STOMP_ERROR(3) Stomp::error - Gets the last stomp error Object oriented style (method):SYNOPSISpublic string Stomp::error (void )DESCRIPTIONProcedural style: string stomp_error (resource $link) Gets the last stomp error.PARAMETERSo $link -Procedural style only: The stomp link identifier returned by stomp_connect(3).RETURN VALUESReturns an error string or FALSE if no error occurred.EXAMPLESExample #1 Object oriented style <?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); ?> The above example will output something similar to: bool(false) string(43) "Invalid transaction id: unknown-transaction" 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_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" PHP Documentation Group STOMP_ERROR(3)