问问题
594 次
2 回答
1
用于htmlspecialchars()
将特殊字符转换为实体。另外,开始引用标签的属性:
<img src="http://images/14fc272d-131b-47ce-b452-9cd47a4a3846.jpg">
<iframe width="420" height="315" src="http://www.youtube.com/embed/LBBqOTd5qzE" frameborder="0" allowfullscreen></iframe>
您可能还想allowfullscreen
支持webkitallowfullscreen mozallowfullscreen
。
编辑
我从
<textarea>
好的,你已经有了实体(你的问题不够清楚)。您需要与htmlspecialchars()
那时相反,即html_entity_decode()
或htmlspecialchars_decode()
于 2012-11-26T11:19:40.333 回答
0
我认为您实际上想在浏览器上显示该代码。不执行它..这可能是您的解决方案:-
<pre>
<img src=http://images/14fc272d-131b-47ce-b452-9cd47a4a3846.jpg>
<iframe width=420 height=315 src=http://www.youtube.com/embed/LBBqOTd5qzE frameborder=0 allowfullscreen></iframe>
</pre>
于 2012-11-26T11:30:10.160 回答