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 文件的内容显示为本身。我不想解析它,而只是读取它的内容并显示它。
我试过
$content = file_get_contents("test.xml") ;
但是$content里面有xml。即当我var_dump($content)输出时string(899) " " 是否可以在不解析的情况下读取文件。请帮帮我。
$content
var_dump($content)
string(899) " "
谢谢。
这应该解决它
$content = htmlentities(file_get_contents("test.xml"));
这应该解决它:
header("Content-Type: text/plain"); $content = file_get_contents("test.xml"); var_dump($content);
它告诉浏览器您正在发送纯文本,以便 XML 不会呈现为 HTML 标记(这些标记是未知且隐藏的)。