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

search for in the

Exception::getPrevious> <Exception::__construct
[edit] Last updated: Fri, 17 May 2013

view this page in

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



add a note add a note User Contributed Notes Exception::getMessage - [1 notes]
up
-1
support resort
4 years ago
<?php
$client
= new SoapClient ("http://example.com");
try {
   
$response = $client->Client_Function();
} catch(
SoapFault  $e) {
    echo
$e->getMessage();
}
?>

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