1

在 Zend Framework 1 中,我可以通过以下方式获得它们:

$this->actionName = $this->getRequest()->getActionName();
$this->controllerName = $this->getRequest()->getControllerName();

在 Zend Framework 2 中,我不知道。如何获得controllerNameand actionName

4

1 回答 1

1

在控制器中:

$this->getEvent()->getRouteMatch()->getParam('action', 'NA'); $this->getEvent()->getRouteMatch()->getParam('controller', 'NA');

(第二个参数是默认值)

于 2012-06-06T14:39:55.187 回答