Yaf_View_Simple::assignRef

(Yaf >=1.0.0)

Yaf_View_Simple::assignRefThe assignRef purpose

說明

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

不同于Yaf_View_Simple::assign(),這個(gè)方法傳遞一個(gè)引用變量給模板引擎

參數(shù)

name

一個(gè)字符串的名字,被用來傳遞值給模板。

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

參見