如何在 Zend Framework 中调用控制器函数?
在 Zend Framework 中,我有一个控制器
In Zend Framework, I have one controller
class TestController extends Zend_Controller_Action
{
public function indexAction()
{
}
public function getResultByID( $id )
{
return $id;
}
}
如何调用 index.phtml 中的 getResultByID 函数?
How can I call the function getResultByID in index.phtml ?
推荐答案
第一:
public function indexAction()
{
$this->view->controller = $this
}
在您的视图脚本中:
<html><title><?php echo $this->controller->getResultByID($this->id); ?></title></html>
相关文章