goodby/csv

Can not export multi-line columns

Closed this issue · 1 comments

suin commented

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) )

        $line = '';
        while ( feof($fp) === false ) {
            $line .= fgets($fp);
        }
suin commented

duplicated from #11