存档

文章标签 ‘zf’

Zend Framework执行流程

2010年8月1日 effect 没有评论

入口文件(一般为index.php)
设置include_path,把Zend的目录加载进来
加载Zend_Loader
设置一些基本路径(可选)
Zend_Controller_Front::run(‘/path/to/controller’);

到Zend_Controller_Front::run
1·实例化本身
1.1 给插件$this->_plugins实例化类 Zend_Controller_Plugin_Broker
1.2 开始分发$this->dispatch
阅读全文…

分类: php, zend framework 标签:

Zend Framework 调试插件

2010年8月1日 effect 没有评论

做了一个ZF调试的插件,这个插件就简单的把一些变量打印出来,希望能帮到大家。

先看一下效果:

增加步骤
1. 新建一个php脚本,内容如下:(我保存在php的include_path里面的Plugin的debug.php)

阅读全文…

分类: php, zend framework 标签: