PHP CSV重复值

我有一个 csv 文件,其中包含来自两个分销商的产品数据和价格。此文件中有 67 个键。现在我想搜索这个文件中所有可用两次的 EAN,然后得到最便宜的价格。之后删除其他更高价格的产品线。CSV 有我的商家的密钥。


我制作了一个测试 csv 以便于查看:


artno;name;ean;price;merchant

1;ipad;1654213154;499.00;merchant1

809;ipad;1654213154;439.00;merchant2

23;iphone;16777713154;899.00;merchant2

90;iphone;16777713154;799.00;merchant1

脚本运行后,csv 应如下所示(写入新文件):


artno;name;ean;price;merchant

809;ipad;1654213154;439.00;merchant2

90;iphone;16777713154;799.00;merchant1

我玩过 fgetcsv,循环遍历 csv 不是问题,但是如何在键 2 中搜索 ean?


$filename = './test.csv';

$file = fopen($filename, 'r');

$fileline = 1;


while (($data = fgetcsv($file, 0, ";")) !== FALSE) {

if($fileline == "1"){ $fileline++; continue; }



$search      = $data[2];

$lines       = file('./test.csv');

$line_number = false;


$count = 0;

while (list($key, $line) = each($lines) and !$line_number) {

   $line_number = (strpos($line, $search) !== FALSE) ? $key : $line_number;

   $count++;

}


if($count > 2){ 

    echo "<pre>",print_r(str_getcsv($lines[$line_number], ";")),"</pre>";

}


}


UYOU
浏览 95回答 1
1回答

喵喵时光机

我认为这就是你要找的:<?php$filename = './test.csv';$file = fopen($filename, 'r');$lines = file('./test.csv');$headerArr = str_getcsv($lines[0], ";");$finalrawData = [];$cheapeastPriceByProduct = [];$dataCounter = 0;while (($data = fgetcsv($file, 0, ";")) !== FALSE) {&nbsp; if($dataCounter > 0) {&nbsp; &nbsp; $raw = str_getcsv($lines[$dataCounter], ";");&nbsp; &nbsp; $tempArr = [];&nbsp; &nbsp; foreach( $raw as $key => $val) {&nbsp; &nbsp; &nbsp; $tempArr[$headerArr[$key]] = $val;&nbsp; &nbsp; }&nbsp; &nbsp; $finalrawData[] = $tempArr;&nbsp; }&nbsp; $dataCounter++;}foreach($finalrawData as $idx => $dataRow ) {&nbsp; if(!isset($cheapeastPriceByProduct[$dataRow['name']])) {&nbsp; &nbsp; $cheapeastPriceByProduct[$dataRow['name']] = $dataRow;&nbsp; }&nbsp; else {&nbsp; &nbsp; if(((int)$dataRow['price'])< ((int)$cheapeastPriceByProduct[$dataRow['name']]['price'])) {&nbsp; &nbsp; &nbsp; $cheapeastPriceByProduct[$dataRow['name']] = $dataRow;&nbsp; &nbsp; }&nbsp; }}echo "<pre>";print_r($finalrawData);print_r($cheapeastPriceByProduct);我刚刚添加了$finalData数据数组来存储解析的数据并将所有行与其对应的标题键相关联,然后您可以根据您的标准比较和过滤数据。
打开App,查看更多内容
随时随地看视频慕课网APP