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

前端 未结 5 1636
耶瑟儿~
耶瑟儿~ 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:40

    Use the action helper broker:

    $flashMessenger =
        Zend_Controller_Action_HelperBroker::getStaticHelper('FlashMessenger');
    

提交回复
热议问题