0

嗨,昨晚有人通过另一个问题帮助我写了一些代码:Transform html table

我已经对其进行了一些更改,但我又有点卡住了。

基本上 $results 是一系列电影。我已将其格式化为包含一个单独的条目,用于每当数组中的第一个字母发生变化时,包含第一个字母。

这是执行此操作的代码:

while (false !== ($entry = readdir($handle)) ) {
    if($entry == "." or $entry == "..") 
        continue;

    if($i == 0) {
        array_push($results,substr($entry, 0,1));
    } else if (substr($entry, 0,1) != substr($lastEntry, 0,1)) {
        array_push($results,substr($entry, 0,1));
    }
    $lastEntry = $entry;
    array_push($results,$entry);
    $i++;
}

这会产生一个像这样的数组:

Array ( 
    [0] => 0 
    [1] => 007, A View to a Kill (1985) 
    [2] => 1 
    [3] => 127 Hours (2010) 
    [4] => A 
    [5] => A Clockwork Orange (1971) 
    [6] => B 
    [7] => Back to the Future (1985) 
    [8] => Butterfly on a Wheel (2007) 
    [9] => C 
    [10] => Carnage (2011) 
    [11] => Casino (1995)  
    [12] => D 
    [13] => Defiance (2008) 
)

所以基本上我想生成一个表格,为每个索引(0,1,A,C 等)提供一个不同的 CSS 类,并给它一个行跨度为 2。我已经做到了。我制作了一张看起来正确的表格。下面的代码在添加 rowspan=2 的单元格时递增 $indexRow,然后下一行打印 number_of_cols - $indexRow。由于上一行中的 rowspan=2 单元格占据了当前行中的一个单元格。

$NUM_COLUMNS = 3;

$numRows = count($results) / $NUM_COLUMNS;
if (count($results) % $NUM_COLUMNS > 0) {
    $numRows += 1;
}

echo "<div align=\"center\"><table>";
$i=0;
$indexRow=0;
for ($i = 0; $i < $numRows; $i++) {
    echo "<tr>\n";

    $index = $i;
    $j=0;

    if($indexRow > 0) {
        $j+=$indexRow;
        $indexRow=0;
    }

    while ($j < $NUM_COLUMNS) {
        $entry = '';
        if ($index < count($results)) {
           $entry = $results[$index];
        }
        if(strlen($entry) < 2) {
            echo "\t<td rowspan=\"2\" class=\"movieindex\">" . $entry . "</td>\n";
            $indexRow++;
        } else {
            echo "\t<td>" . $entry  . "</td>\n";
        }   
        $index += $numRows;

        $j++;
    }
    echo "</tr>\n";
}
echo "</table></div>";

我的实际问题是,现在使用 rowspan=2 单元格的电影没有正确排序。电影应该垂直排序,但会被索引单元格丢弃。我不确定如何规避这个问题,有什么想法吗?

这是我得到的表:

<div align="center">
<table>
<tr>
    <td rowspan="2" class="movieindex">0</td>
    <td>Hancock (2008)</td>
    <td>Sin City (2005)</td>
</tr>
<tr>
    <td>007, A View to a Kill (1985)</td>
    <td>Hangover (2009)</td>
</tr>
<tr>
    <td>007, Diamonds Are Forever (1971)</td>
    <td>Happy Feet Two (2011)</td>
    <td>Snow White (1987)</td>
</tr>

这就是我要的:

<div align="center">
<table>
<tr>
    <td rowspan="2" class="movieindex">0</td>
    <td>Hancock (2008)</td>
    <td>Sin City (2005)</td>
</tr>
<tr>
    <td>Hangover (2009)</td>
    <td>Snow White (1987)</td>
</tr>
<tr>
    <td>007, A View to a Kill (1985)</td>
    <td>Happy Feet Two (2011)</td>
    <td>Step Brothers (2008)</td>
</tr>

如果需要更多解释,请询问,我会编辑。基本上我要问的是如何正确地垂直排列单元格?

也许这会帮助你理解我想要做什么:http: //imageshack.us/f/163/exampletable.png/

4

1 回答 1

1

正如我在评论中所说,作为一个肮脏的解决方案,您可以在索引之后在数组中添加一个占位符,并且不要在代码中显示它们。

} else if (substr($entry, 0,1) != substr($lastEntry, 0,1)) {
    array_push($results,substr($entry, 0,1));
    array_push($results,"");
}

这将导致这样的数组:

Array ( 
    [0] => 0
    [1] => 
    [2] => 007, A View to a Kill (1985) 
    [3] => 1 
    [4] => 
    [5] => 127 Hours (2010)
);

如果您将代码修改为:

if(strlen($entry) == 1) {
    echo "\t<td rowspan=\"2\" class=\"movieindex\">" . $entry . "</td>\n";
    $indexRow++;  // This might be unneeded now, did not test this myself
} else if(strlen($entry) == 0){
     // Do nothing, just a placeholder
} else {
    echo "\t<td>" . $entry  . "</td>\n";
}
于 2012-05-19T12:03:24.410 回答