1

我对 PHP 非常陌生,并且一直在尝试结合 css 将 CSV 文件转换为我网站上的表格。我想知道您是否可以选择仅显示 CSV 文件中的一系列行,例如第 5 到 20 行,并找到下面的代码来显示某些列。

有没有一种简单的方法可以将其切换为显示选定的行?

<?php
 $row = 1;
 if (($handle = fopen("donors.csv", "r")) !== FALSE) {
      while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) {
    $num = count($data);
    if ($row == 1) {
        echo '<tr>';
    }else{
        echo '<tr>';
    }

    for ($c=0; $c < $num; $c++) {

        if(empty($data[$c])) {
           $value = "&nbsp;";
        }else{
           $value = $data[$c];
        }
        if ($row == 1) {

             echo '<td style="border-top: 1px solid rgb(111,180,224); border-left: 1px solid rgb(111,180,224); border-bottom: 1px solid rgb(111,180,224);"  align="left" bgcolor="#0066cc" height="36" valign="middle" ><b><font color="#ffffff" size="2">&nbsp;&nbsp;'.$value.'&nbsp;&nbsp;</font></b></td>';
        }else{


            echo '<td style=" border-bottom: 1px solid rgb(111,180,224);" sdval="9" sdnum="1040;" align="left" bgcolor="#ffffff" height="25"  valign="middle"><font color="#000000" size="2">&nbsp;&nbsp;'.$value.'&nbsp;&nbsp;</font></td>';
        }
    }

    if ($row == 1) {
        echo '</tr>';
    }else{
        echo '</tr>';
    }
    $row++;
   }

  echo '</tbody></table>';
echo '</center>';   
    fclose($handle);
 }
 ?>
4

3 回答 3

0

1)使用以下函数将您的 CSV 文件提取到数组中(来源:jaywilliams @ GIST

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;
}

2)迭代所需的行范围

$data = csv_to_array($file,$delimiter); 

echo "your table header stuff"; //<table> ... 

//first row numbered as 1 
$from_row = 2; //second
$to_row = 50;

//first row numbered as 0 
for($i = from_row-1; $i< $to_row-1; $i++) 
{
   echo "<tr>"; //start row

   //now, every row of the CSV file is an array and consists of fileds=>values
   //so now you are dealing with columns   

   foreach($data[$i] as $key=>$value
   {
          echo "<td>" . $value . "</td>"; 
   }
    echo "</tr>"; //end row
}

echo "your table footer stuff"; //</table> ... 

从这里开始,我想你可以做任何你想做的事,使用 CSS 来设置表格的样式。重要的是,如果您想要表格标题,您可以使用 CSV 文件提供函数,其中列名保存在第一行。

于 2013-08-09T10:04:26.433 回答
0

我不确定你想展示什么。

但是在测试网站上,我添加了一个显示一系列行的表格。

这是这个表的代码:

echo "<meta content=\"text/html; charset=utf-8\" http-equiv=\"Content-Type\"/>
      <link rel=\"stylesheet\" type=\"text/css\" href=\"test.css\">";
$file = '/var/www/test/test.csv'; 
echo "<h1><b>Lines X to Y</b></h1>";
echo "<table>";                     //create the html table
$x=2;       //define the first line to display
$y=4;       //define the last line to display
$line_counter=0;
foreach ($lines as $line) {         //loop to fill your table with csv data
  if($x<=$line_counter && $line_counter<=$y)
  {
    $expl = explode(",", $line);      //explode each line on "," to create the rows
    echo "<tr>";                      //create each line of your table
    $c=0;
    while ($c<=26) {                  //loop to extract rows 5 to 20
      if(($c % 2) == 1){              //odd  rows
        echo "<td class=\"odd\">".$expl[$c]."</td>";
      }
      elseif(($c == 0)){
        echo "<td class=\"even\">".$expl[$c]."</td>";
      }
      else{
        echo "<td class=\"even\">".$expl[$c]."</td>";    //even rows
      }
      $c++;
    }
    echo "</tr>";
    $x++;
  }
  $line_counter++;
}
echo "</table>";

echo "<h1><b>content of the file</b></h1>";
foreach ($lines as $line) {         //loop to fill your table with csv data
  echo "$line<br/>" ;   
}

CSS总是在一个单独的文件中,和我的第一个答案一样。

于 2013-08-09T09:50:01.810 回答
0

选择一系列行:

我从一个旧项目中改编了这段代码,但它应该可以工作。

<?php 
echo "<meta content=\"text/html; charset=utf-8\" http-equiv=\"Content-Type\"/>
      <link rel=\"stylesheet\" type=\"text/css\" href=\"test.css\">";
$file = '/volume1/web/Print data.csv';   
$lines = file($file);
if (file_exists($file)){
  //echo "$file exists<br/>"; 
  echo "<table>";                      //create the html table
  foreach ($lines as $line) {         //loop to fill your table with csv data
    $expl = explode(",", $line);      //explode each line on "," to create the rows
    echo "<tr>";                      //create each line of your table
    $c=5;
    while ($c<=20) {                  //loop to extract rows 5 to 20
      if(($c % 2) == 1){              //odd  rows
      echo "<td class=\"odd\">".$expl[$c]."</td>";
      }
      else{
        echo "<td class=\"even\">".$expl[$c]."</td>";    //even rows
      }
      $c++;
    }
    echo "</tr>";
  }
  echo "</table>";
}
else{
  echo "file is not here: $file";
}
?>

对于CSS:

您应该使用带有此代码的外部.css文件

.odd {
    border-top: 1px solid rgb(111, 180, 224);
    border-left: 1px solid rgb(111, 180, 224);
    border-bottom: 1px solid rgb(111, 180, 224);
    background:#0066cc;
    color:white;
    font-weight:bold;
    font-size:12px;
}
.even {
    border-bottom: 1px solid rgb(111, 180, 224);
    background: #ffffff;
    color:#000000;
    font-size:12px;
}

要检查这个 css,你可以看到这个jsfiddle

我希望它会帮助你。

编辑

修复了一些缺失;的 . 添加了结果图片

结果

于 2013-08-05T14:58:14.690 回答