PHP自定义CSV读取,针对不同列和行的独立回声

时间:2014-04-13 21:55:38

标签: php html csv

我有一个简单的CSV,让我们说6列。

编辑: 我无法在下面找到错误,选择一个密钥并将其用作变量我认为:

$handle = fopen('hire_pa_amps.csv',"r");
while($values = fgetcsv($handle))
{
foreach('$values[0]' as $value0)
{
    echo($value0);
}
foreach('$values[1]' as $valuepound)
{
    echo('&pound'.$valuepound);
}
echo ('<br>'); }
fclose($handle); 



The data from the CSV file looks like this:
 "H/H ELECTRONICS VX200, 100 watts/channel stereo amplifier",70,30,20
  Electrovoice CP1800,84,36,24

与此同时,我设法以不同的方式做到了(现在它可以正常工作)但是我仍然想知道上面代码中的问题所在(如何选择数组中的键并进行操作)它使用foreach时独立)。所以我现在提出的解决方案:

$handle = fopen('hire_pa_amps.csv','r') or die("can't open file");

echo('<table class="pricesTable">');
while($csv_line = fgetcsv($handle)) {
    list($column1, $column2, $column3, $column4) = $csv_line;

    echo('<tr>');

    echo    '<td>'.$column1.'</td>'.
            '<td>'.'&pound'.$column2.'</td>'.
            '<td>'.'&pound'.$column3.'</td>'.
            '<td>'.'&pound'.$column4.'</td>';
    echo('</tr>');
    }
fclose($handle) or die("can't close file");
echo('</table>');

1 个答案:

答案 0 :(得分:0)

如果您将CSV更改为包含列标题,然后在下面的代码中编辑列选择,那么这将有效:

function csv_to_array($filename='', $delimiter=',')
{
if(!file_exists($filename) || !is_readable($filename))
    return FALSE;

$header = NULL;
$data = array();
if (($handle = fopen($filename, 'r')) !== FALSE)
{
    while (($row = fgetcsv($handle, 1000, $delimiter)) !== FALSE)
    {
        if(!$header)
            $header = $row;
        else
            $data[] = array_combine($header, $row);
    }
    fclose($handle);
}
return $data;
}

$csvArray = csv_to_array('hire_pa_amps.csv');
echo "<table>
<tr>
    <th>Product Name</th>
    <th>Price</th>
    <th>Markup</th>
    <th>VAT</th>
</tr>
";
foreach($csvArray as $currentProduct){
    echo "  <tr>
    <td>" . $currentProduct['Product Name'] . "</td>
    <td>" . $currentProduct['Price'] . "</td>
    <td>" . $currentProduct['Markup'] . "</td>
    <td>" . $currentProduct['VAT'] . "</td>
</tr>
";
}
echo "</table>";

我不认为您正在考虑使用foreach()正确解析CSV到数组的方式,当您应该循环时,您试图循环$ values [0] $的值。