用于在“pre”标记中对齐 XML 内容的 PHP 代码
我想要对齐网页上 pre 标记中显示的 XML 语法。
如此处,我们有很多解决方案来突出显示语法但不对齐它们,即为代码块
添加一些前面的空格。
如果你知道怎么做,请告诉我。
原始XML文本:
<abb><ccc></ccc><ccc><edd></edd></ccc></abb>
对齐后,应该是:
<abb>
<ccc>
</ccc>
<ccc>
<edd>
</edd>
</ccc>
</abb>
I want to align the XML syntax displayed in a pre tag on a web page.
As showed here, we have plenty of solution to highlight the syntax but not align them i.e. adding a number of preceeding spacings for the code block
.
If you know how, please show me.
The original XML text:
<abb><ccc></ccc><ccc><edd></edd></ccc></abb>
After aligned, it should be:
<abb>
<ccc>
</ccc>
<ccc>
<edd>
</edd>
</ccc>
</abb>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
DOMDocument
类来格式化 XML:You can use the
DOMDocument
class to format the XML: