©
이 문서에서는 PHP 중국어 웹사이트 매뉴얼 풀어 주다
(PHP 5 >= 5.1.0)
Exception::getMessage — 获取异常消息内容
返回异常消息内容。
此函数没有参数。
返回字符串类型的异常消息内容。
Example #1 Exception::getMessage() 示例
<?php
try {
throw new Exception ( "Some error message" );
} catch( Exception $e ) {
echo $e -> getMessage ();
}
?>
以上例程的输出类似于:
Some error message
[#1] ctymtce at 126 dot com [2015-07-31 01:24:42]
U can use get_class_methods($e) to view more methods.