1.10.3. Discussion
The second argument to fgetcsv( ) must be longer
than the maximum length of a line in your CSV file.
(Don't forget to count the end-of-line whitespace.)
If you read in CSV lines longer than 1K, change the 1024 used in this
recipe to something that accommodates your line length.
You can pass fgetcsv( ) an optional third
argument, a delimiter to use instead of a comma (,). Using a
different delimiter however, somewhat defeats the purpose of CSV as
an easy way to exchange tabular data.