/** * Change writer type to convert to another format * * @param string $filetype Set the filetype of the file which will be written (XML/CSV/TSV/HTML/JSON) */ public function convertTo($filetype) { $this->constructWriter($filetype); $this->writer->setData($this->parser->getField()); }