Yaf_View_Simple::clear

(Yaf >=2.2.0)

Yaf_View_Simple::clearClear Assigned values

Opis

public Yaf_View_Simple::clear ([ string $name ] ) : bool

clear assigned variable

Parametry

name

assigned variable name

if empty, will clear all assigned variables

Zwracane wartości

Przykłady

Przykład #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
    
}
?>

Zobacz też:

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top