Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16170 программистов и 1779 роботов. Сейчас ищут 1804 программиста ...
Yaf_View_Simple::assignRef - The assignRef purpose
Вернуться к: Yaf_View_Simple
Yaf_View_Simple::assignRef
(Yaf >=1.0.0)
Yaf_View_Simple::assignRef — The assignRef purpose
Описание
unlike Yaf_View_Simple::assign(), this method assign a ref value to engine.
Список параметров
-
name
-
A string name which will be used to access the value in the tempalte.
-
value
-
mixed value
Возвращаемые значения
Примеры
Пример #1 Yaf_View_Simple::assignRef()example
<?php
class IndexController extends Yaf_Controller_Abstract {
public function indexAction() {
$value = "bar";
$this->getView()->assign("foo", $value);
/* plz note that there was a bug before Yaf 2.1.4,
* which make following output "bar";
*/
$dummy = $this->getView()->render("index/index.phtml");
echo $value;
//prevent the auto-render
Yaf_Dispatcher::getInstance()->autoRender(FALSE);
}
?>
Пример #2 template()example
<html>
<head>
<title><?php echo $foo; $foo = "changed"; ?></title>
</head>
<body>
</body>
</html>
Результатом выполнения данного примера будет что-то подобное:
/* access the index controller will result: */ changed
Смотрите также
- Yaf_View_Simple::assign() - Assign values
- Yaf_View_Simple::__set() - Set value to engine
Вернуться к: Yaf_View_Simple