在Zend Framework中,我有一個控制器如何在Zend Framework中調用控制器函數?
class TestController extends Zend_Controller_Action
{
public function indexAction()
{
}
public function getResultByID($id)
{
return $id;
}
}
我如何可以調用index.phtml功能getResultByID?
你真的需要在視圖中調用'getResultByID()'嗎?爲什麼不在控制器中調用該方法並將結果傳遞給視圖(這將是更標準的方法)? –