可以使用htmlentities函数
<?phpheader("content-type:text/htmlcharset=utf-8")
$str = '<a href="http://www.baidu.com">百度一下</a>'
echo htmlentities($str)
?>
输出结果
<a href="http://www.baidu.com">百度一下</a>什么叫实体化:就是将html标签(如“<”,“>”等)转化成用ASCII表示的形式。
举个例子:
<?php$str = "A 'quote' is <b>bold</b>"
// Outputs: A 'quote' is &ltb&gtbold&lt/b&gt
echo htmlentities($str)
// Outputs: A &#039quote&#039 is &ltb&gtbold&lt/b&gt
echo htmlentities($str, ENT_QUOTES)
有啥作用:一般是过滤用户输入
参考资料:http://w3school.com.cn/html/html_entities.asp
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)