Yaf_View_Simple::get
(Since Yaf 1.0.0.0)
public string Yaf_View_Simple::get( string $name );
获取视图引擎的一个模板变量值
$name
模板变量名
成功返回变量值,失败返回NULL
例 11.64. Yaf_View_Simple::get 的例子
<?php class IndexController extends Yaf_Controller_Abstract { public function init() { $this->initView(); } public funciton indexAction() { echo $this->_view->get("name"); } } ?>