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.
我一直在尝试将用户(使用 TinyMCE)已经创建的 html 回显到应用程序的另一个页面中。我一直遇到的问题是标签被回显到它们的 HTML 等效项中(例如>,而不是<),因此它们显示在页面上而不是影响标记。
>
<
如何让 CakePHP 将内容显示为 HTML 而不仅仅是回显它?
尝试使用html_entity_decode。
echo html_entity_decode($theirHTML);