我认为在SO中提供ZFDebug教程会很好。
我想知道你是否可以ZFDebug toolbar
使用ZF 1.10+
(我实际上正在使用1.11.2
)。我的引导程序中有以下代码但似乎没有发生任何事情:
protected function _initZFDebug()
{
$autoloader = Zend_Loader_Autoloader::getInstance();
$autoloader->registerNamespace('ZFDebug');
if ('development' == APPLICATION_ENV) {
$options = array(
'jquery_path' => 'http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js',
'plugins' => array('Variables',
'Html',
'Database' => array(),
'File' => array('basePath' => APPLICATION_PATH . '/application'),
'Memory',
'Time',
'Registry',
//'Cache' => array('backend' => $cache->getBackend()),
'Exception')
);
$debug = new ZFDebug_Controller_Plugin_Debug($options);
$this->bootstrap('frontController');
$frontController = $this->getResource('frontController');
$frontController->registerPlugin($debug);
}
}
答案 0 :(得分:2)
APPLICATION_ENV
设置为'development'
<head>
和<body>
)APPLICATION_PATH . '/../'