A valid file pointer to a file successfully opened by fopen(), popen(), or fsockopen().
Must be greater than the longest line (in characters) to be found in the CSV file (allowing for trailing line-end characters). It became optional in PHP 5.
Set the field delimiter (one character only). Defaults as a comma.
Set the field enclosure character (one character only). Defaults as a double quotation mark. Added in PHP 4.3.0.
Similar to fgets() except that fgetcsv() parses the line it reads for fields in CSV format and returns an array containing the fields read.
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.
fgetcsv() has been binary safe since PHP 4.3.5
注: Locale setting is taken into account by this function. If LANG is e.g. en_US.UTF-8, files in one-byte encoding are read wrong by this function.
注: 如果遇到PHP讀取麥金塔電腦格式檔案時無法辨識行結束的問題,可能可以試著起動執行時期組態選項的auto_detect_line_endings。