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.
我有一个问题。我在mysql数据库中有一个列
<p><strong>WELCOME</strong></p> <p><strong>About Me</strong>
现在我想在我的 php 页面中获取它。但是当我获取时,它不显示粗体文本,只显示普通文本。我在用
html_entity_decode($content,0,1649)."...");
听起来正在发生的事情是您有一些其他代码在输出 HTML 之前转义您的数据。
在大多数情况下,这是一件好事。您不希望带有<script>标签的 HTML 以及用户数据中不允许的内容。<如果有的话,你不想>被误解。
<script>
<
>
但是,如果您确实想允许 HTML,则需要修改输出 HTML 的任何内容,以免转义此特定变量。