suin opened this issue 12 years ago · 1 comments
Currently, the exporter can output only one line column. If a column has two or more lines, the exporter breaks CSV format...
CsvFileObject needs to while ( !feof($fp) )
while ( !feof($fp) )
$line = ''; while ( feof($fp) === false ) { $line .= fgets($fp); }
duplicated from #11