fgetcsv
Gets line from file pointer and parse for CSV fields
Description
arrayfgetcsv
resourcehandle
intlength
stringdelimiter
stringenclosure
Similar to fgets except that
fgetcsv parses the line it reads for fields
in CSV format and returns an array containing
the fields read. The optional third delimiter
parameter defaults as a comma, and the optional enclosure
defaults as a double quotation mark. Both delimiter
and enclosure are limited to one character. If
either is more than one character, only the first character is used.
The enclosure parameter was added in PHP 4.3.0.
The handle parameter must be a valid file pointer to a file
successfully opened by fopen,
popen, or fsockopen.
The length parameter must be greater than the longest
line to be found in the CSV file (allowing for trailing line-end characters).
fgetcsv returns &false; on error, including
end of file.
A blank line in a CSV file will be returned as an array
comprising a single null field, and will not be treated
as an error.
Read and print the entire contents of a CSV file
$num fields in line $row:
\n";
$row++;
for ($c=0; $c < $num; $c++) {
print $data[$c] . "
\n";
}
}
fclose ($handle);
?>
]]>
See also explode, file,
and pack