我有 CSV 文件:
测试2.csv
ID Name Price
Q4 Quail 400
Q2 Quail 500
Q1 Quail 100
我用PHP打开这个文件,检查一些条件,如果价格更大或更小,保存新价格,然后我想用php把它放在一个新的CSV文件中。
这是我的代码:
$file = fopen('test2.csv', 'r');
while (($line = fgetcsv($file)) !== FALSE) {
if (array_key_exists($line[0], $result)) {
$oldPrice= 500;
$oldPriceplus20= $oldPrice +($oldPrice*0.2);
$oldPriceminus20= $oldPrice -($oldPrice*0.2);
$newPrice = $line[2];
print( "The 'first' element is in the array\nOld price is: ".$oldPrice."\nNew price is:".$newPrice."\n");
print("Old price with +20% is:".$oldPriceplus20."\nOld price with -20% is:".$oldPriceminus20."\n");
if ($newPrice <= $oldPriceplus20 && $newPrice >= $oldPriceminus20){
echo"Take new price\n\n";
}
else{
$line[2] = $oldPrice;
echo"Take the old price.\n";
}
}
$fp = fopen('write.csv', 'w');
foreach ($line as $lin) {
fputcsv($fp, array($lin), ',', ' ');
}
fclose($fp);
}
fclose($file);
但这是我得到的输出:
Q1
Quail
100
我哪里做错了?如果需要,我的新 CSV 文件应该与 test2.csv 几乎相同,只是有新的价格。
守着一只汪