如何在 PHP 中在 HTML 中显示 XML?
如果字符串已预格式化,并且需要相同的纯文本表示形式,那么它可以包含在 HTML <pre/> 标记中,并且可以使用 HTML 实体来转义尖括号。这已在下面显示 −
<?PHP echo '<pre>', htmlentities($string), '</pre>'; ?>
将字符串分配给字符串类型,并在上面显示 XML 在 HTML 中显示 −
示例
<?php $string = " <example> <example> <example_value>EXAMPLE</example_value> </example> </example> "; echo '<pre>', htmlentities($string), '</pre>'; ?>
输出
这将产生以下输出 −
<example> <example> <example_value>EXAMPLE</example_value> </example> </example>
广告