我有一个以 XML 形式发送信息的 PDF 表单。我想在 PHP 文件中回显 xml 数据以测试格式等。这是我尝试过的,但它不起作用
$xml = file_get_contents('php://input');
$reader = new XMLReader();
$reader->XML($xml);
while ($reader->read()) {
foreach ($reader as $name => $value) {
echo "$name: $value\n";
}
}
// this line will echo out the values of the xml one after the
// other without spaces. I am looking for name: value.
echo "<br>$xml<br>";