我正在寫一個動作助手,我需要從該助手中調用另一個動作助手。但我不知道如何。在這裏的示例代碼:zend-framework,從另一個動作助手中調用一個動作助手
class Common_Controller_Action_Helper_SAMPLE extends Zend_Controller_Action_Helper_Abstract
{
protected $_view;
public function __construct(Zend_View_Interface $view = null, array $options = array())
{
$this->_view = $view;
}
public function preDispatch()
{
$flashMessenger = $this->_helper->FlashMessenger; // IT IS NULL
}
}
它的工作很大。 :) – 2009-07-12 20:32:34