Thanks for this library!
I took a look into CsvObjectFile and saw that you are utilize the PHP's own fputcsv by writing into a temp stream and catch the written line.
It would be nice, if you could write your own fputcsv that would be more customizable. Some features that could be implemented with that are:
(I know, that you already have a filter mechanism. But the filter is feed with serialized line splitted by the spearator as strings, not with the raw data).
Thanks for this library!
I took a look into CsvObjectFile and saw that you are utilize the PHP's own
fputcsvby writing into a temp stream and catch the written line.It would be nice, if you could write your own
fputcsvthat would be more customizable. Some features that could be implemented with that are:fputcsvfunction formats (maybe depends on the system) numbers like1.23. But it would be nice to define for example the decimal separator. So I can define the german comma as a decimal separator1,23. You can imagine that this applies to any other types, e. g. date and time.(I know, that you already have a filter mechanism. But the filter is feed with serialized line splitted by the spearator as strings, not with the raw data).