zend-framework, call an action helper from within another action helper

前端 未结 5 1681
耶瑟儿~
耶瑟儿~ 2020-12-31 02:06

i am writing an action helper and i need to call another action helper from within that helper. but i dont know how. here in the sample code:

class Common_Co         


        
5条回答
  •  春和景丽
    2020-12-31 02:22

    You can call it in this way:

    $this->_actionController->OtherActionHelper();
    

    The _actionController property references the actual action controller.

提交回复
热议问题