Gpf_Data_Record::toObject PHP Method

toObject() public method

public toObject ( )
        public function toObject()
        {
            return $this->record;
        }

Usage Example

 private function addFilteredByHeader(Gpf_Data_Record $record)
 {
     $newRecord = new Gpf_Data_Record($this->header);
     foreach ($this->header as $column) {
         $newRecord->set($column, $record->get($column));
     }
     $this->encode($newRecord->toObject());
 }
All Usage Examples Of Gpf_Data_Record::toObject