©
This document uses PHP Chinese website manual Release
(Yaf >=2.2.0)
Yaf_View_Simple::clear — Clear Assigned values
$name
] )清除指定的变量
name
分派的变量名
如果为空,将会清除所有的变量
Example #1 Yaf_View_Simple::clear() example
<?php
class IndexController extends Yaf_Controller_Abstract {
public function indexAction () {
$this -> getView ()-> clear ( "foo" )-> clear ( "bar" ); // clear "foo" and "bar"
$this -> _view -> clear (); //clear all assigned variables
}
?>