Home  >  Article  >  Backend Development  >  php怎么读取csv文件?

php怎么读取csv文件?

PHPz
PHPzOriginal
2016-06-01 11:06:314652browse

php读取csv文件的方法:1、使用fopen()打开csv文件;2、使用fgetcsv()从文件指针中读入一行并解析 CSV字段;3、借助循环语句,将fgetcsv()读取的csv数据存入数组中;4、输出数组中的CSV数据即可。

php怎么读取csv文件?

php怎么读取csv文件?

1、文件内容

1.png

2、读取结果

2.png

3、代码

public function testAction( ) {
    $filePath = APP_PATH.'/data/111.csv';
    $data = $this->getCsvData($filePath);
    var_export($data);
    die;
} 
 
function getCsvData($filePath){
    $handle = fopen( $filePath, "rb" );
    $data = [];
    while (!feof($handle)) {
	$data[] = fgetcsv($handle);    
    }
    fclose($handle);
	
    $data = eval('return ' . iconv('gb2312', 'utf-8', var_export($data, true)) . ';');	//字符转码操作
	
    return $data;
}

说明:

fgetcsv — 从文件指针中读入一行并解析 CSV 字段

如果提供了无效的文件指针,fgetcsv() 会返回 NULL。 其他错误,包括碰到文件结束时返回 FALSE,。

这个函数比较关键,可以看到它的功能就是读取并解析 CSV 字段。这次没有用到太多的参数,有需要的看下方链接自行参考。

例1:一次性读取csv文件内所有行的数据

<?php 
$file = fopen(&#39;windows_2011_s.csv&#39;,&#39;r&#39;); 
while ($data = fgetcsv($file)) { //每次读取CSV里面的一行内容
//print_r($data); //此为一个数组,要获得每一个数据,访问数组下标即可
$goods_list[] = $data;
 }
//print_r($goods_list);

/* foreach ($goods_list as $arr){
    if ($arr[0]!=""){
        echo $arr[0]."<br>";
    }
} */
 echo $goods_list[2][0];

 fclose($file);
?>

例2:读取csv文件的某一行数据

<?php
function get_file_line( $file_name, $line ){
  $n = 0;
  $handle = fopen($file_name,&#39;r&#39;);
  if ($handle) {
    while (!feof($handle)) {
        ++$n;
        $out = fgets($handle, 4096);
        if($line==$n) break;
    }
    fclose($handle);
  }
  if( $line==$n) return $out;
  return false;
}

echo get_file_line("windows_2011_s.csv", 10);
?>

更多相关知识,请访问 PHP中文网!!

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