我正在尝试使用SQL数据库中的数据输出XML文件。我一直收到错误“第1行第1列错误:文档为空......”
我已经查看了类似的问题和解决方案状态以移动
header('Content-type: text/xml');
有人可以看到我出错的地方吗?
<?php
header('Content-type: text/xml');
require("config.php");
function parseToXML($htmlStr)
{
$xmlStr=str_replace('<','<',$htmlStr);
$xmlStr=str_replace('>','>',$xmlStr);
$xmlStr=str_replace('"','"',$xmlStr);
$xmlStr=str_replace("'",''',$xmlStr);
$xmlStr=str_replace("&",'&',$xmlStr);
return $xmlStr;
}
$sql = "SELECT * FROM markers;";
$result = mysqli_query($connection, $sql);
$resultCheck = mysqli_num_rows($result);
echo "test1 \n\n";
echo "<?xml version='1.0' ?>";
echo '<markers>';
echo "test2 \n\n";
if($resultCheck > 0) {
while($row = mysqli_fetch_assoc($result)){
echo $row['id'] . "<br>";
echo $row['name'] . "<br>";
echo $row['address'] . "<br>";
echo $row['lat'] . "<br>";
echo $row['lng'] . "<br>";
echo $row['type'] . "<br>";
}
}
echo "test3 \n\n";
// Start XML file, echo parent node
$ind=0;
// Iterate through the rows, printing XML nodes for each
while ($row = @mysqli_fetch_assoc($result)){
// Add to XML document node
echo '<marker ';
echo 'id="' . $row['id'] . '" ';
echo 'name="' . parseToXML($row['name']) . '" ';
echo 'address="' . parseToXML($row['address']) . '" ';
echo 'lat="' . $row['lat'] . '" ';
echo 'lng="' . $row['lng'] . '" ';
echo 'type="' . $row['type'] . '" ';
echo '/>';
$ind = $ind + 1;
}
//End XML file
echo '</markers>';
?>
注意 - 我与数据库专线创建的连接
$connection
在我的配置文件中。
注意 - 我正在通过代码进行测试,因此有些是随机测试语句在这里和那里注释掉的,我只是无法找到错误的原因!