为了账号安全,请及时绑定邮箱和手机立即绑定

PHP CSV重复值

PHP CSV重复值

PHP
UYOU 2022-07-16 18:11:17
我有一个 csv 文件,其中包含来自两个分销商的产品数据和价格。此文件中有 67 个键。现在我想搜索这个文件中所有可用两次的 EAN,然后得到最便宜的价格。之后删除其他更高价格的产品线。CSV 有我的商家的密钥。我制作了一个测试 csv 以便于查看:artno;name;ean;price;merchant1;ipad;1654213154;499.00;merchant1809;ipad;1654213154;439.00;merchant223;iphone;16777713154;899.00;merchant290;iphone;16777713154;799.00;merchant1脚本运行后,csv 应如下所示(写入新文件):artno;name;ean;price;merchant809;ipad;1654213154;439.00;merchant290;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>";}}
查看完整描述

1 回答

?
喵喵时光机

TA贡献1846条经验 获得超7个赞

我认为这就是你要找的:


<?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) {

  if($dataCounter > 0) {

    $raw = str_getcsv($lines[$dataCounter], ";");

    $tempArr = [];

    foreach( $raw as $key => $val) {

      $tempArr[$headerArr[$key]] = $val;

    }

    $finalrawData[] = $tempArr;

  }

  $dataCounter++;

}


foreach($finalrawData as $idx => $dataRow ) {

  if(!isset($cheapeastPriceByProduct[$dataRow['name']])) {

    $cheapeastPriceByProduct[$dataRow['name']] = $dataRow;

  }

  else {

    if(((int)$dataRow['price'])< ((int)$cheapeastPriceByProduct[$dataRow['name']]['price'])) {

      $cheapeastPriceByProduct[$dataRow['name']] = $dataRow;

    }

  }

}


echo "<pre>";

print_r($finalrawData);

print_r($cheapeastPriceByProduct);

我刚刚添加了$finalData数据数组来存储解析的数据并将所有行与其对应的标题键相关联,然后您可以根据您的标准比较和过滤数据。


查看完整回答
反对 回复 2022-07-16
  • 1 回答
  • 0 关注
  • 94 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信