2010年1月22日金曜日

PHPで例外( Exception )を catchせずに処理する方法

PHP: set_exception_handler - Manual
例1 set_exception_handler() の例
function exception_handler($exception) {
echo "Uncaught exception: " , $exception->getMessage(), "\n";
}

set_exception_handler('exception_handler');

throw new Exception('Uncaught Exception');
echo "Not Executed\n";
?>

これなら共通インクルードファイルで定義しておけば共通エラーページにとばしたりできる
.

0 件のコメント:

ブログ アーカイブ

カテゴリー