我认为我从 mysql 查询中正确地在我的 php 脚本中创建了一个 xml 文档,但是即使 mysql 查询有效,我也没有得到一个 xml 文档作为回报(没有 php 错误可以帮助我)!
<?php
...
$result = $mysqli->query($sql);
if ($result) { //this query works, but no xml document produced as a result
$d = new DOMDocument();
$books = $d->createElement('hey');
$hey->setAttribute('check','The Adventures of Tom Sawyer');
$d->appendChild($books);
$d->appendChild($hey);
$d->appendChild($books);
echo $d->saveXML();
}
?>