(Yaf >=2.2.0)
Yaf_View_Simple::clear — Remove an assigned variable
Removes an assigned variable from the view. When called without an argument, all assigned variables are removed.
nameThe name of the variable to remove, or omitted/null to remove all assigned variables.
Returns true.
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
}
}
?>