如何从csv文件返回特定行并将它们放入数组

时间:2016-03-29 15:45:05

标签: php csv rows

我基本上想知道如何从csv文件中获取特定的行(假设文件有5000行,我想从行3023 - 3311获取第二列的值)。获取这些列值后,我想将它们放入php数组中。

到目前为止我尝试过:

 $search = $this->uri->segment(3); // get the row number    
 $row1 = 0;

   if (($handle = fopen("Folder/Data.csv", "r")) !== FALSE)
    {
        while (($data1 = fgetcsv($handle, 1000, ",")) !== FALSE)
        {
            $num1 = count($data1); // number of data rows
            $row1++;
            for ($c=0; $c < $num1; $c++) {



                echo $data1[$c+1]; // to return second row


            }
        }
        fclose($handle);

但是这只返回一行,我需要返回大约200并将它们放入一个数组中。非常感谢任何帮助!

1 个答案:

答案 0 :(得分:1)

你非常接近。您不需要在for循环内运行while循环。你可以使用这样的东西:

$file = fopen('/path/to/file', 'r');

// Helps us keep tabs on the row we are on
$rowCount = 0;
// Array that stores all of our column values.  In this case, I'll be gathering 
// values from the second column
$secondColumnArray = array();
while(false !== ($rowData = fgetcsv($file))){
    if($rowCount >= 50 && $rowCount <= 100){
        array_push($secondColumnArray, $rowData[1]);
    }
    $rowCount = $rowCount + 1;
}

print_r($secondColumnArray);

fclose($file);

在上面的示例中,我的数组包含第50行到第100行的第二列中的值。更改参数以符合您的条件。