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