2

我正在根据我的 MySQL 数据库中的某些信息制作一个 HTML 表。我需要从数据库中获取的表包含行(rowidrowname)、列(columnidcolumnname)和单元格数据的数据。一个表,将行和列中的 ID 链接在一起(cellidrowidcolumnidsomedata)。该表如下所示:

__________| column1  | column2  | column3  | ...
     row1 | somedata | somedata |          |
----------|----------|----------|----------|-----
     row2 | somedata |          | somedata |
----------|----------|----------|----------|-----
...       |          |          |          |

我的方法是使用几个嵌套的 foreach 循环,如下所示:

$rows = new Rows();        //These objects are containers for objects
$columns = new Columns();  //that hold some of the database data. 
$alldata = new Alldata();  //MySQL queries within these objects are irrelevant, I think. They already get the relevant data

$count = count($alldata);

echo "<table>";
echo "<tr>";
echo "<td>&nbsp;</td>";

foreach ($columns->getColumns() as $column) {
    echo "<td>".$column->getColumnname()."</td>";
}

echo "</tr>";

foreach ($rows->getRows() as $row) {
    echo "<tr>";
    echo "<td>".$row->getRowname()."</td>";

    foreach ($columns->getColumns() as $column) {
        $last = 1;

        foreach ($alldata->getAlldata() as $data) {
            if ($data->getCID() == $column->getID() & $data->getRID() == $row->getID()) { //If the column has data the related to the row
                echo "<td>".$data->getSomedata()."</td>";
                break;
            }
            if ($last == $count) { //if loop couldn't find any entries, it prints an empty cell
                echo "<td>&nbsp;<td>";
            }
            $last++
        }
    }
    echo "</tr>";
}
echo "</table>";

暴力破解,当数据库中的任何表上有数百行数据并且我不喜欢这样时,显然这不是很有效的方法。有什么想法可以提高效率吗?有没有更好的方法来创建我需要的表格?

编辑:
思考这个问题一周终于给了我一些答案。就是这么简单!
我对我的Column对象类做了一些修改。以前,我的代码遍历了数据库中celldata表上所有可能的条目。现在Column对象获取一个 celldata 数组,其中columnid匹配,我可以仅使用该数据进行比较。

$rows = new Rows();
$columns = new Columns();

echo "<table>";
echo "<tr>";
echo "<td>&nbsp;</td>";

foreach ($columns->getColumns() as $column) {
    echo "<td>".$column->getColumnname()."</td>";
}

echo "</tr>";

foreach ($rows->getRows() as $row) {
    echo "<tr>";
    echo "<td>".$row->getRowname()."</td>";

    foreach ($columns->getColumns() as $column) {
        $last = 1;
        $count = count($column->getAlldata());

        foreach ($column->getAlldata() as $data) {
            if ($data->getCID() == $column->getID() & $data->getRID() == $row->getID()) {
                echo "<td>".$data->getSomedata()."</td>";
                break;
            }
            if ($last == $count) {
                echo "<td>&nbsp;<td>";
            }
            $last++
        }
    }
    echo "</tr>";
}
echo "</table>";

快得多,虽然仍然是暴力破解,但要处理的数据量更少。当然,现在的问题是Column对象可能会执行相当多的 MySQL 查询,具体取决于有多少Column

4

2 回答 2

1

$alldata如果您通过连接表并在查询中指定ORDER BY子句来确保从 MySQL 获取的数据正确排序:

SELECT   data.*
FROM     data RIGHT JOIN rows USING (rowid) RIGHT JOIN columns USING (columnid)
ORDER BY rowname, columnname;

然后你只需要按顺序输出每个单元格:

echo '<table>';

echo '<thead>'
echo '<tr>';
echo '<th>&nbsp;</th>';
foreach ($columns->getColumns() as $column) {
    echo '<th scope="col">', htmlentities($column->getColumnname()), '</th>';
}
echo '</tr>';
echo '</thead>';

echo '<tbody>';
$data = $alldata->getAlldata();
foreach ($rows->getRows() as $row) {
    echo '<tr>';

    echo '<th scope="row">', htmlentities($row->getRowname()), '</th>';
    foreach ($columns->getColumns() as $column) {
        $d = each($data);
        echo '<td>', ($d ? htmlentities($d[1]->getSomedata()) : '&nbsp;'), '</td>';
    }

    echo '</tr>';
}
echo '</tbody>';

echo '</table>';
于 2012-06-30T07:42:36.180 回答
0

解决此问题的最佳方法是重写查询$alldata,使其按照您想要的顺序,如 eggyal 建议的那样。如果由于某种原因你不能这样做,你可以$alldata在开始时迭代并从中创建一个正确索引的数组。像这样的东西:

$ordereddata = array();
foreach($alldata as $d) {
    $ordereddata[$d->getCID()][$d->getRID()] = $d->getSomedata();
}

现在你可以foreach($alldata)用这个替换你的循环:

if(isset($ordereddata[$column->getID()][$row->getID()])) {
    echo "<td>{$ordereddata[$column->getID()][$row->getID()]}</td>";
} else {
    echo "<td>&nbsp;</td>";
}
于 2012-06-30T08:26:46.467 回答