下面的第四行就是warning里的283行:
function gen_recommend_boards_html()
{
# load xml doc
$boardrank_file = BBS_HOME . "/xml/rcmdbrd.xml";
$doc = domxml_open_file($boardrank_file);
if (!$doc)
return;
$root = $doc->document_element();
$boards = $root->child_nodes();
?>
<table width="100%" border="0" cellpadding="0" cellspacing="0" class="helpert">
<tr>
<td class="helpert_left"></td>
<td class="helpert_middle">推荐版面</td>
<td class="helpert_right"></td>
<td> </td>
</tr>
</table>
<table width="100%" border="0" cellpadding="0" cellspacing="0" class="helper">
<tr>
<td width="100%" class="MainContentText">
<ul style="margin: 5px 0px 0px 15px; padding: 0px;">
<?php
$brdarr = array();
# shift through the array
while($board = array_shift($boards))
{
if ($board->node_type() == XML_TEXT_NODE)
continue;
$ename = find_content($board, "EnglishName");
$brdnum = bbs_getboard($ename, $brdarr);
if ($brdnum == 0)
continue;
$brd_encode = urlencode($brdarr["NAME"]);
?>
<li class="default"><a href="bbsdoc.php?board=<?php echo $brd_encode; ?>"><?php echo htmlspecialchars($brdarr["DESC"]); ?></a></li>
<?php
}
?>
</ul></td></tr>
</table>
<br>
<?php
}
【 在 r0 (阿圆) 的大作中提到: 】
: Warning: domxml_open_file(): XML declaration allowed only at the start of the document in /usr/local/www/htdocs/mainpage.php on line 283
: 好几天没搞定。
--
FROM 59.66.124.*