1. 下载debugkit(必须与phpcake 版本一致)
2. 解压到cake/app/plugin 并重命名为DebugKit
3. app/Config/bootstrap.php 开放加载DebugKit 插件。
CakePlugin::LoadAll();
CakePlugin::load('DebugKit');
4. AppController 中添加DebugKit Component
public $components = array('DebugKit.Toolbar');
PS: debug 信息控制在 app/Config/core.php
.修改Configure::write('debug', xxx);///0:不吐debug 信息;1:开发级;2:包括sql 语句
若要显示sql 语句,注意把layouts 里$this->element('sql_dump')注释掉。
此时网页端会有DebugKit 工具条,里面有诸如变量、sql、环境变量等信息。
阅读(1456) | 评论(0) | 转发(0) |