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

search for in the

Exception::getCode> <Exception::__construct
Last updated: Fri, 10 Oct 2008

view this page in

Exception::getMessage

(PHP 5 >= 5.1.0)

Exception::getMessage例外メッセージを取得する

説明

final public string Exception::getMessage ( void )

例外メッセージを返します。

パラメータ

この関数にはパラメータはありません。

返り値

例外メッセージ文字列を返します。

例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
There are no user contributed notes for this page.

Exception::getCode> <Exception::__construct
Last updated: Fri, 10 Oct 2008
 
 
show source | credits | sitemap | contact | advertising | mirror sites