将特定行的csv读入php
Posted
技术标签:
【中文标题】将特定行的csv读入php【英文标题】:reading specific row of csv into php 【发布时间】:2015-01-13 07:11:38 【问题描述】:我有一个包含 100000 个客户详细信息的大型 csv 文件。
我想为我的 android 应用程序获取数据。
我想从 csv 文件中读取特定的行。
就像我想要 cust_id
是 070507 的客户的所有详细信息
使用这种方法在php中读取这么大的文件会花费太多时间。
if (($handle = fopen("test.csv", "r")) !== FALSE)
while (($data = fgetcsv($handle, 1000, ",")) !== FALSE)
fclose($handle)
我想要一个简单的解决方案。 如果这是最简单的方法,那么请告诉我如何读取特定行?
【问题讨论】:
我猜这是你使用的方便的一个:)。 那么如何从中读取特定的行? 【参考方案1】:您可以使用 file() 将文件放入数组中,然后您可以针对特定行并将其解析为 CSV
$lines = file('test.csv');
$row = $lines[70507]; // Assuming one header row
$csvdata = str_getcsv($row); // Parse line to CSV
$num = count($data); // Get number of columns
for ($c=0; $c < $num; $c++) // Loop through columns
echo $data[$c] . "<br />\n"; // Echo column
【讨论】:
【参考方案2】:这是您读取特定行的方式。
$ch = fopen($link_to_file);
$found = '';
/* If your csv file's first row contains Column Description you can use this to remove the first row in the while */
$header_row = fgetcsv($read_file);
/* This will loop through all the rows until it reaches the end */
while(($row = fgetcsv($ch)) !== FALSE)
/* $row is an array of columns from that row starting at 0 */
$first_column = $row[0];
/* Here you can do your search */
/* If found $found = $row[1]; */
/* Now $found will contain the 2nd column value (if found) */
【讨论】:
以上是关于将特定行的csv读入php的主要内容,如果未能解决你的问题,请参考以下文章
将CSV文件数据读取为命名元组行的pythonic方法是啥?