Yaf_View_Simple::display
(Since Yaf 1.0.0.0)
public string Yaf_View_Simple::display( string $view_path , array $tpl_vars = NULL );
渲染一个视图模板, 并直接输出给请求端
$view_path
视图模板的文件, 绝对路径, 一般这个路径由Yaf_Controller_Abstract提供
$tpl_vars
关联数组, 模板变量
成功返回TRUE, 失败返回FALSE
例 11.59. Yaf_View_Simple::display 的例子
<?php class IndexController extends Yaf_Controller_Abstract { public funciton indexAction() { $this->getView()->display($this->_script_path . "/test.phtml"); } } ?>