Yaf_View_Simple::assignRef

(Yaf >=1.0.0)

Yaf_View_Simple::assignRefassignRef 的用途

描述

public Yaf_View_Simple::assignRef(string $name, mixed &$value): bool

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

参见

添加说明

用户贡献说明

此页面没有用户贡献说明。
To Top