'.$ex.''; } else { $newArray = []; if( ! empty($ex) ) foreach( $ex as $k => $v ) { $newArray[$k] = $v; } $ex = $newArray; } $str = "
"; if( $errorMsg !== NULL ) { $str .= Lang::default('ZN\CoreDefaultLanguage')::select($langFile, $errorMsg, $ex); } else { $str .= $langFile; } $str .= '

'; return $str; } /** * Get last error * * @param string $type = NULL * * @return mixed */ public static function last(?string $type = NULL) { $result = error_get_last(); if( $type === NULL ) { return $result; } else { return $result[$type] ?? false; } } /** * Error log * * @param string $message * @param int $type = 0 * @param string $destination = NULL * @param string $header = NULL * * @return bool */ public static function log(string $message, int $type = 0, ?string $destination = NULL, ?string $header = NULL) : bool { return error_log($message, $type, $destination, $header); } /** * Get error report * * @param int $level = NULL * * @return int */ public static function report(?int $level = NULL) : int { if( ! empty($level) ) { return error_reporting($level); } return error_reporting(); } /** * Exception handler * * @param void * * @return void */ public static function handler(int $errorTypes = E_ALL | E_STRICT) { set_error_handler([new Exceptions, 'table'], $errorTypes); } /** * Trigger error * * @param string $msg * @param int $errorType = E_USER_NOTICE * * @return bool */ public static function trigger(string $msg, int $errorType = E_USER_NOTICE) : bool { return trigger_error($msg, $errorType); } /** * Restore handler * * @param void * * @return void */ public static function restore() { restore_error_handler(); } }