PHP Doku:: Gibt die Exceptionbeschreibung zurück - exception.getmessage.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchSprachreferenzVordefinierte ExceptionsExceptionException::getMessage

Ein Service von Reinhard Neidl - Webprogrammierung.

Exception

<<Exception::__construct

Exception::getPrevious>>

Exception::getMessage

(PHP 5 >= 5.1.0)

Exception::getMessageGibt die Exceptionbeschreibung zurück

Beschreibung

final public string Exception::getMessage ( void )

Gibt die Exceptionbeschreibung zurück.

Parameter-Liste

Diese Funktion hat keine Parameter.

Rückgabewerte

Gibt die Exceptionbeschreibung als String zurück.

Beispiele

Beispiel #1 Exception::getMessage()-Beispiel

<?php
try {
    throw new 
Exception("Some error message");
} catch(
Exception $e) {
    echo 
$e->getMessage();
}
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

Some error message


Ein BenutzerBeitrag:
- Beiträge aktualisieren...
support resort
11.03.2009 8:40
<?php
$client
= new SoapClient ("http://example.com");
try {
   
$response = $client->Client_Function();
} catch(
SoapFault  $e) {
    echo
$e->getMessage();
}
?>



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",...)