如何使用PHP将现有HTML表拆分为4个大小均匀的表?

时间:2013-07-08 11:12:14

标签: php html-table

我正在处理的网站已有大约140个HTML文件,每个文件包含不同的HTML表格。每个表有10列到大约400行,有2列。这是旧代码,不符合标准,目前我正在尝试使用旧代码。

以下是一个例子:

<TABLE BORDER=0>
  <TR><TD><FONT SIZE=1>Row 1 Col 1</TD><TD WIDTH+20><FONT SIZE=1>Row 1 Col 2</TD><TR>
<TR><TD><FONT SIZE=1>Row 2 Col 1</TD><TD WIDTH+20><FONT SIZE=1>Row 2 Col 2</TD><TR>
<TR><TD><FONT SIZE=1>Row 3 Col 1</TD><TD WIDTH+20><FONT SIZE=1>Row 3 Col 2</TD><TR>
...
</TABLE>

我正在尝试在PHP中找到一种方法来计算表中有多少行,然后将行拆分为4个div。所以,如果我们有一个100行的表。前25行会进入这个div:

<div class="span3"><table>{first 25 rows go here}</table></div>

依旧......

<div class="span3"><table>{next 25 rows go here}</table></div>
<div class="span3"><table>{next 25 rows go here}</table></div>
<div class="span3"><table>{next 25 rows go here}</table></div>

直到最后我们得到类似的东西:

<div class="row-fluid">
  <div class="span3"><table>{first 25% rows go here}</table></div>
  <div class="span3"><table>{next 25% rows go here}</table></div>
  <div class="span3"><table>{next 25% rows go here}</table></div>
  <div class="span3"><table>{next 25% rows go here}</table></div>
</div>

所有这一切都需要在不实际编辑现有表格中的代码的情况下完成。有谁知道我怎么用PHP做这个?

3 个答案:

答案 0 :(得分:1)

我会使用DomDocument模型,如下所示:

$dom = new domDocument;
@$dom->loadHTML($html);
$rows = $dom->getElementsByTagName('tr');

答案 1 :(得分:1)

感谢大家的提示。这就是我回答DomDocument路线的问题。

 <?php

  $dom = new DOMDocument();

  //load the html
  $html = $dom->loadHTMLFile($path.$filename);

  //discard white space 
  $dom->preserveWhiteSpace = false; 

  //the table by its tag name
  $tables = $dom->getElementsByTagName('table'); 

  //get all rows from the table
  $rows = $tables->item(0)->getElementsByTagName('tr'); 

$numberofrows = $tables->item(0)->getElementsByTagName('tr')->length;

$numberincolumn = ceil($numberofrows / 4);

  $counter = 0;
echo '<div class="row-fluid"><div class="span3"><table>';
  // loop over the table rows

  foreach ($rows as $row) 
  { 


    if ($counter > 0 && $counter % $numberincolumn == 0){
    echo '</table></div><div class="span3"><table>';    
    }



   // get each column by tag name
      $cols = $row->getElementsByTagName('td'); 
   // echo the values  
      echo "<tr><td style='padding-left:10px;'>".$cols->item(0)->nodeValue.'</td>'; 
      echo "<td>".$cols->item(1)->nodeValue.'</td></tr>'; 
      $counter++;
    } 
    echo "</table></div></div>";
*/
?>

答案 2 :(得分:0)

尝试链接此

$data = "<TABLE BORDER=0>
  <TR><TD><FONT SIZE=1>Row 1 Col 1</TD><TD WIDTH+20><FONT SIZE=1>Row 1 Col 2</TD><TR>
<TR><TD><FONT SIZE=1>Row 2 Col 1</TD><TD WIDTH+20><FONT SIZE=1>Row 2 Col 2</TD><TR>
<TR><TD><FONT SIZE=1>Row 3 Col 1</TD><TD WIDTH+20><FONT SIZE=1>Row 3 Col 2</TD><TR>
...
</TABLE>";
$data = array_shift($data); // first array (table) 
$rows = explode("<TR>",$data); // you will loose the <TR> so you will need to add the <TR> back on to the begining

$numrows = count($rows);