simplexml_load_file() 返回空对象
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
print()
调用不会显示所有信息。做The
print()
call does not display all information. Do