我正在尝试使用 PHP 从 xml 创建一个 html 表。XML 看起来像这样:
<?xml version="1.0" encoding="UTF-8"?>
<Device name="3" alias="THIS">
<RecCommand name="CLICK">
<GlobalState name="Light Is Off">
<Conditions>
<Device name="3">
<State name="LEVEL">
<Test name="LT">50</Test>
</State>
</Device>
</Conditions>
<Commands>
<Device name="3">
<Command name="ON">
</Command>
</Device>
</Commands>
</GlobalState>
<GlobalState name="Light Is On">
<Conditions>
<Device name="3">
<State name="LEVEL">
<Test name="GTE">50</Test>
</State>
</Device>
</Conditions>
<Commands>
<Device name="3">
<Command name="OFF">
</Command>
</Device>
</Commands>
</GlobalState>
</RecCommand>
</Device>
我目前正在处理的功能:
function foo($parent) {
if ($parent->children()->count() > 0) {
$j = '<tr><td>' . $parent->getName();
foreach($parent->attributes() as $attrName => $attrValue) {
$j .= ' ' . $attrName. '=' . $attrValue;
}
echo $j;
echo '</td>';
echo '</tr>';
//foreach ($parent->children() as $node) {
//foo($node);
foo($parent->children());
//}
}
else {
$j = $parent->getName();
foreach($parent->attributes() as $attrName => $attrValue) {
$j .= ' ' . $attrName. ' : ' . $attrValue;
}
$j .= ' ' . $parent;
echo '<td>';
echo $j;
echo '</td>';
}
echo '</tr>';
}
echo '<body>';
echo '<table border="1">';
foo($test);
echo '</table>';
echo '</body>';
echo '</html>';
它击中了所有元素并回显了一个简单的表格,但我想生成一个反映 XML 结构的表格。我已经为<tr>
and<td
标签尝试了许多不同的设置,但我无法正确设置。我总是以太多的嵌套行和列结束,它看起来像一个疯狂的迷宫。