コード例 #1
0
ファイル: GWF_Debug.php プロジェクト: sinfocol/gwf3
 public static function enableExceptionHandler()
 {
     if (self::$exception === false) {
         set_exception_handler(array('GWF_Debug', 'exception_handler'));
         self::$exception = true;
     }
 }