In parseCSV v0.3.2
When parsing a csv, I was finding the first key value of each row was prepended
with a \n or \r, not sure which.
I think the problem lies on line 380:
if ( !$was_enclosed ) $current = trim($current);
I fixed the issue I was experiencing by changing line 382 to:
$row[$key] = trim($current);
Original issue reported on code.google.com by John.Sta...@gmail.com on 19 Jun 2013 at 3:41
Original issue reported on code.google.com by
John.Sta...@gmail.com
on 19 Jun 2013 at 3:41