以正确格式显示 XML

发布于 2024-09-04 02:43:56 字数 500 浏览 5 评论 0原文

有没有办法使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

逆蝶 2024-09-11 02:43:56

是的,它被称为 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.

飘逸的'云 2024-09-11 02:43:56

它称为 XSLT,您可以将 XML 转换为任何内容。
链接文本

It is called XSLT, you can transform XML into anything.
link text

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文