php

phpでexception_handler設定

php

phpにてexception_handlerを使用した時のメモexception_handlerは*catchされなかった例外*に対して処理を指定できる。 try {} catch () {}された場合はcatch内の処理が実行。 マニュアル->http://php.net/manual/ja/function.set-exception-handler.php*php-…

phpでerror_handler設定

php

phpにてerror_handlerを使用した時のメモerror_handlerは実行時にエラーが発生した時の処理を指定できる。 trigger_errorで投げたエラーに対する処理とか。マニュアル->http://php.net/manual/ja/function.set-error-handler.php定義済みエラー番号(マニュア…