Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在尝试解析 XML 文件时头疼。
以前,我打开和解析 XML 文件的脚本可以完美运行。但是,今天我注意到它无法正常工作,所以我看了一下。
我的 XML 文件是唯一格式的。不幸的是,我无法举一个例子。不过,当我研究这个问题时,我意识到它们被 PHP 错误地读取了。它不是将整个文件读入字符串,而是剥离 XML 标记,只接收这些标记之间的值。我不知道它为什么这样做。
示例代码不多:
echo file_get_contents(URL_TO_FILE);
<?php $xml=simplexml_load_file("note.xml"); print_r($xml); ?>
听起来您正在 html 阅读器(浏览器)中查看 xml。这当然会忽略标签。确保您正在查看源代码。