This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
khosb/includes/kohana/modules/userguide/guide/zh-cn/debugging.errors.md
2011-05-03 09:49:01 +10:00

716 B

错误/异常句柄

Kohana 同时提供了异常句柄和错误句柄使用 PHP 的 ErrorException 类转换错误为异常。关于错误的详情和通过句柄显示应用程序的内部状态:

  1. Exception 类
  2. 错误等级
  3. 错误信息
  4. 带有行高亮的错误源
  5. 执行流程的调试跟踪
  6. 导入(include)文件,加载扩展,全局变量

实例

点击任何一个链接可以切换显示额外的信息:

{{userguide/examples/error}}

显示错误/异常句柄

如果您不希望使用内部错误句柄,您可以调用 [Kohana::init] 时禁用它:

Kohana::init(array('errors' => FALSE));