PHP安排从水平到垂直表中的内容(PHP arrange table content from ho

2019-10-29 15:51发布

我有一个脚本读取CSV文件。

 <?php
 echo '<table border="0" cellspacing="1" cellpadding="1" class="sortable" border="1"><caption>Title Here</caption>
 <thead><tr><th class="header">Time:</th><th class="header">Value 1:</th><th class="header">Value 2:</th><th class="header">Value 3:</td class="header"><th class="header">Value 4:</th><th class="header">Value 5:</th><th class="header">Value 6:</th><th class="header">Value 7:</th><th class="header">Value 8:</th><th class="header">Value 9:</th></tr></thead><tbody><tr>';
 $row = 1;
 if (($handle = fopen("data.csv", "r")) !== FALSE) {
   while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) {
     $num = count($data);   
     $row++;
     for ($c=0; $c < $num; $c++) {
        if ($c==9) { echo "<td>".$data[$c] ."</td></tr><tr>";}
        else  {echo "<td>".$data[$c] ."</td>"; }
     }
   }
   fclose($handle);
 }
 echo '</tbody></table>';
 ?>

这个脚本只取数据,并以HTML表格打印出来。 我只是想重新安排表。 例如,CSV可以具有这些内容

0 1 2 3 4 5 6 7

0 1 2 3 4 5 6 7

0 1 2 3 4 5 6 7

0 1 2 3 4 5 6 7

祝了出来:

0 0 0 0

1 1 1 1

2 2 2 2

3 3 3 3

4 4 4 4

去...我一些我必须把额外的循环..我该怎么办呢?

Answer 1:

那么你会读CSV文件导入到多维数组。

考虑到在CSV文件中的每一行,现在是列(上升到不降反升的左到右)。 这就是所谓的移调行列。

对于一个表,你会通过每一行,而不是每列需要循环。 所以你创建一个循环内的循环,如下所示:

<table border="0" cellspacing="1" cellpadding="1" class="sortable" border="1"><caption>Title Here</caption>
     <thead><tr><th class="header">Time:</th><th class="header">Value 1:</th><th class="header">Value 2:</th><th class="header">Value 3:</td class="header"><th class="header">Value 4:</th><th class="header">Value 5:</th><th class="header">Value 6:</th><th class="header">Value 7:</th><th class="header">Value 8:</th><th class="header">Value 9:</th></tr></thead><tbody>
<?php
     #read CSV file
     if (($handle = fopen("data.csv", "r")) !== FALSE) {
       $mycsv = array();
       while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) $mycsv[] = $data;
       fclose($handle);


     #Find the length of the transposed row

     $row_length = count($mycsv);

     #Loop through each row (or each line in the csv) and output all the columns for that row
     foreach($mycsv[0] as $col_num => $col)
     {
        echo "<tr>";
        for($x=0; $x<$row_length; $x++)
           echo "<td>".$mycsv[$x][$col_num]."</td>";


        echo "</tr>";
     }

  }
?>
  </tbody></table>

尝试了这一点,让我知道,如果它的工作原理。



Answer 2:

我不完全相信你的csv文件的布局方式,但它看起来像你可能需要你读完整个CSV文件后遍历这些阵列存储在单独的阵列,这些值不同的数字,然后。 你能告诉csv文件的简单示例,以便我能明白你在读取数据的想法?



文章来源: PHP arrange table content from horizontal to vertical