CI_Table::clear PHP 메소드

clear() 공개 메소드

Clears the table arrays. Useful if multiple tables are being generated
public clear ( ) : CI_Table
리턴 CI_Table
    public function clear()
    {
        $this->rows = array();
        $this->heading = array();
        $this->auto_heading = TRUE;
        return $this;
    }

Usage Example

예제 #1
0
 function clear()
 {
     parent::clear();
     $this->row_ids = array();
 }
All Usage Examples Of CI_Table::clear