在Zend框架1,我可以做讓他們:如何獲取當前控制器的名稱和方法?
$this->actionName = $this->getRequest()->getActionName();
$this->controllerName = $this->getRequest()->getControllerName();
在Zend框架2我不知道。如何獲取controllerName
和actionName
?
在Zend框架1,我可以做讓他們:如何獲取當前控制器的名稱和方法?
$this->actionName = $this->getRequest()->getActionName();
$this->controllerName = $this->getRequest()->getControllerName();
在Zend框架2我不知道。如何獲取controllerName
和actionName
?
你可以參考http://stackoverflow.com/questions/8843092/zf2-get-controller-name -into-layout-views –