我是 Zend 模块化应用程序的新手。我有一个 api 控制器,我想从这个控制器调用其他模块。例如将数据发布到此地址:
http://localhost/api/addTask
我添加了一个自定义路由来将所有请求重定向到 api/index
现在,如何通过 indexAction 调用模块或其他方法?
例如:
function indexAction()
{
$params = $this->getRequets()->getParams();
$controller = $params[0];//I know that there is issues with this line but keep going...
//module name is addTask
//call to module or controller addTask
}
提前致谢