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

search for in the

Exception::getCode> <Exception::__construct
Last updated: Fri, 13 Nov 2009

view this page in

Exception::getMessage

(PHP 5 >= 5.1.0)

Exception::getMessageObtém a mensagem da exceção

Descrição

final public string Exception::getMessage ( void )

Retorna a mensagem da exceção.

Parâmetros

Esta função não contém parâmetros.

Valor Retornado

Retorna a mensagem da exceção como uma string.

Exemplos

Exemplo #1 Exemplo da Exception::getMessage()

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

O exemplo acima irá imprimir algo similar a:

Some error message



add a note add a note User Contributed Notes
Exception::getMessage
support resort
11-Mar-2009 07:40
<?php
$client
= new SoapClient ("http://example.com");
try {
   
$response = $client->Client_Function();
} catch(
SoapFault  $e) {
    echo
$e->getMessage();
}
?>

Exception::getCode> <Exception::__construct
Last updated: Fri, 13 Nov 2009
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites