Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am aware of fputcsv, but according to this "wontfix" bug fputcsv does not correctly escape input, and its behavior will not be fixed for compatibility reasons. I would prefer an implementation that is compliant with RFC 4180 so Excel and LibreOffice can open it in all cases.

I've tried googling for a library that does this correctly, but there doesn't seem to be a consensus on a decent third party library, instead commonly suggesting the defective fputcsv. I could always roll my own, but I'd prefer not to reinvent the wheel if at all possible.

share|improve this question

2 Answers

up vote 16 down vote accepted

It seems that every library out there stopped development some time in 2008. I'm not sure what's up with that. Here seem to be the popular-ish options:

I can't vouch for any of these. I happen to live in a magical land where I only need to deal with Excel-generated CSV files that will never, ever contain newlines in a field. This lets me get away with fgetcsv/fputcsv and be blissfully ignorant of how they're broken in the real world.

share|improve this answer
5  
I just played around with some of these libs and found that parseCSV excapes " with "" and adds quotes around entries containing commas. PHP CSV Utils doesn't do these things. ParseCSV is also contained in a single file, while PHP CSV Utils is in multiple files and doesn't include itself, so you need lots of require_onces in any file using it. – perilandmishap Mar 8 '12 at 22:56

I was also shocked by the number of dead CSV libraries out there so I ended up writing my own. It's called Coseva and you can find it on Github.

I hope someone finds it useful. :)

share|improve this answer
Thank you Johnny! – dotancohen Feb 27 at 6:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.