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, 24 May 2013

view this page in

Exception::getMessage

(PHP 5 >= 5.1.0)

Exception::getMessage获取异常消息内容

说明

final public string Exception::getMessage ( void )

返回异常消息内容。

参数

此函数没有参数。

返回值

返回字符串类型的异常消息内容。

范例

Example #1 Exception::getMessage()示例

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

以上例程的输出类似于:

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