simplexml_load_file() 返回空对象

发布于 2024-11-24 16:44:43 字数 291 浏览 0 评论 0原文

我有一个 xml 文件的 url,当我在浏览器中访问它时,它看起来不错。然而,使用以下脚本似乎缺少很多信息:

<?php

    $xml_url = "example.xml";
    $xml = simplexml_load_file($xml_url);
    print_r($xml);

?>

出了什么问题?

编辑:当我在浏览器中查看 xml 文件时,数据显示在这些之间: 也许这有帮助。

I have a url to an xml file and when I visit it in my browser it looks good. With the following script however a lot of information seems to be missing:

<?php

    $xml_url = "example.xml";
    $xml = simplexml_load_file($xml_url);
    print_r($xml);

?>

What's going wrong?

EDIT: when I view the xml file in my browser, the data is shown between these: <![CDATA[ ]]>
Maybe that helps.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

┊风居住的梦幻卍 2024-12-01 16:44:43

print() 调用不会显示所有信息。做

echo $xml->asXML();

The print() call does not display all information. Do

echo $xml->asXML();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文