Home >php教程 >php手册 >php fgetcsv读取csv文件代码(1/2)

php fgetcsv读取csv文件代码(1/2)

WBOY
WBOYOriginal
2016-06-13 11:23:531023browse

php教程 fgetcsv读取csv文件代码

function get_csv_contents( $file_target ){

    $handle  = fopen( $file_target, 'r');

    while ($data = fgetcsv($handle, 1000, ",")) {
   
        $num = count($data);
        echo "

$num fields in line $row:
n";
        $row++;
        for ($c=0; $c             echo $data[$c]. "
n";;
            /*echo getUTFString($data[$c])*/
        }
    }

    fclose($handle);
}

array fgetcsv ( int handle [, int length [, string delimiter [, string enclosure]]] )

 


handle
一个由 fopen()、popen() 或 fsockopen() 产生的有效文件指针。

length (可选)
必须大于 CVS 文件内最长的一行。在 PHP 5 中该参数是可选的。如果忽略(在 PHP 5.0.4 以后的版本中设为 0)该参数的话,那么长度就没有限制,不过可能会影响执行效率。

delimiter (可选)
设置字段分界符(只允许一个字符),默认值为逗号。

enclosure (可选)
设置字段环绕符(只允许一个字符),默认值为双引号。该参数是在 PHP 4.3.0 中添加的。


和 fgets() 类似,只除了 fgetcsv() 解析读入的行并找出 CSV 格式的字段然后返回一个包含这些字段的数组。

fgetcsv() 出错时返回 FALSE,包括碰到文件结束时。

1 2

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn