在浏览器中将 xml 作为字符串打印,而不是使用 asXml() 方法
我有一个加载了 xml 字符串的 simplexml 对象,我想在浏览器中打印该字符串。如果我在对象上使用 asXml() 方法,我必须查看页面的源代码才能查看 xml 脚本。相反,我只想将其作为字符串打印到浏览器。我该怎么做?
I have a simplexml object loaded with a xml string and I want to print this string in the browser. If I use the asXml() method on the object, I have to view the source of the page to view the xml script. Instead I just want to print it to the browser as a string. How do I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将输出包装在
htmlspecialchars($xml);
中。Wrap the output in
htmlspecialchars($xml);
.