我有一个如下结构:
/application
.....
--/modules
----/structure
------/controllers
--------/indexController.php
------/forms
--------/Department.php //here class Structure_Form_Department extends Zend_Form
在 indexController.php 中
...
public function saveAction()
{
$request = $this->getRequest();
$form = new Structure_Form_Department();//<-- error
....
}
我得到错误
致命错误:找不到类“Structure_Form_Department”
尝试zf enable form module
接收时:
An Error Has Occurred
This project already has forms enabled.
我认为这是一个类似配置的问题......但不明白我需要做什么......
编辑 1
在这里找到了很好的解决方案
但是对于某种方式,zend_init...
从默认的 bootstrap.php 开始重复执行函数......