Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含 html 标签的字符串。我想用 php 打印它,但它用 html 标签打印。如何打印这样的东西?
细绳 :
<p style="color:#f00">HTML basic test Text</p>
想要展示:
HTML基本测试文本
目前我显示结果:<p style="color:#f00">HTML basic test Text</p>
你有什么解决办法吗?
就像 CBroe 说的,你可以使用strip_tags()函数
strip_tags()
<?php $text = '<p style="color:#f00">HTML basic test Text</p>'; echo strip_tags($text); ?>
AFAICT一个回声应该做到这一点。如果我需要用 php 生成一些 HTML 代码,我会像这样回显它:
<?php echo '<p>Hallo world</p>'; ?>
为我工作,我从未为此目的使用打印。