(Yaf >=1.0.0)
Yaf_View_Simple::assignRef — assignRef 的用途
与 Yaf_View_Simple::assign() 不同,此方法将引用值分配给引擎。
name
一个字符串名称,用于在模板中访问值。
value
混合值
示例 #1 Yaf_View_Simple::assignRef()示例
<?php
class IndexController extends Yaf_Controller_Abstract {
public function indexAction() {
$value = "bar";
$this->getView()->assign("foo", $value);
/* 请注意,在 Yaf 2.1.4 之前存在一个错误,
* 使以下输出为“bar”;
*/
$dummy = $this->getView()->render("index/index.phtml");
echo $value;
// 阻止自动渲染
Yaf_Dispatcher::getInstance()->autoRender(FALSE);
}
}
?>
示例 #2 template()示例
<html>
<head>
<title><?php echo $foo; $foo = "changed"; ?></title>
</head>
<body>
</body>
</html>
上面的示例将输出类似于
/* access the index controller will result: */ changed