以正确格式显示 XML
有没有办法使用 PHP 以良好且可读的格式显示 XML 数据?我知道我可以构建代码来执行此操作,但是是否有一个函数可以执行类似的操作,我可以重用?
例如:
<animals><animal><name>Lion</name><type>Stay away</type></animal><animal><name>Koala Bear</name><type>Hug</type></animal></animals>
是否有一些代码可以以合适的格式向我显示数据?例如:
Animal
Name - Lion
Type - Stay Away
Animal
Name - Koala Bear
Type - Hug
某种 XML 到 HTML 显示?
Is there any way to show XML data in a good and readable format using PHP? I know I can build code to do this, but is there a function that does something similar I can reuse?
eg:
<animals><animal><name>Lion</name><type>Stay away</type></animal><animal><name>Koala Bear</name><type>Hug</type></animal></animals>
Is there some code that will show me the data in a decent format? eg:
Animal
Name - Lion
Type - Stay Away
Animal
Name - Koala Bear
Type - Hug
Some kind of XML to HTML display?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,它被称为 XSLT 并且有一个 PHP 中的 XSL 类。
使用 XSLT,您基本上可以将 XML 文档转换为任何类型的输出。
Yes it is called XSLT and there is a XSL class in PHP.
With XSLT you can transform XML documents basically to any kind of output.
它称为 XSLT,您可以将 XML 转换为任何内容。
链接文本
It is called XSLT, you can transform XML into anything.
link text