PHP Doku:: Error handling - sam.errors.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige DiensteSimple Asynchronous MessagingBeispieleError handling

Ein Service von Reinhard Neidl - Webprogrammierung.

Beispiele

<<Publish/Subscribe and subscriptions to topics

SAM Funktionen>>

Error handling

All SAMConnection methods that provide access to messaging operations return FALSE if an error occurred in processing the request. In addition the SAMConnection object has two properties, "errno" and "error", that provide respectively the error number and text description of the last error to occur on the connection.

Beispiel #1 Handling an error from a method that returns no result

<?php
if (!$conn->commit()) {
    
// The commit failed!
    
echo "Commit failed ($conn->errno$conn->error";
}
?>

Beispiel #2 Handling an error from a method that returns a result

<?php
$correlid 
$conn->send('queue://send/test'$msg);

if (!
$correlid) {
  
// The Send failed!
  
echo "Send failed ($conn->errno$conn->error";
} else {
  
/* ... */
}
?>


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)