在 Zend Framework 1 中,我可以通过以下方式获得它们:
$this->actionName = $this->getRequest()->getActionName();
$this->controllerName = $this->getRequest()->getControllerName();
在 Zend Framework 2 中,我不知道。如何获得controllerName
and actionName
?
在 Zend Framework 1 中,我可以通过以下方式获得它们:
$this->actionName = $this->getRequest()->getActionName();
$this->controllerName = $this->getRequest()->getControllerName();
在 Zend Framework 2 中,我不知道。如何获得controllerName
and actionName
?