`
dennisbing
  • 浏览: 160967 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

htmlspecialchars实图展现

    博客分类:
  • PHP
 
阅读更多

如下代码,没有使用html标签过滤:

$arr_input = array();
$arr_input['uid'] = $this->uid;
$arr_input['pid'] = $pid;
$arr_input['type'] = $type;
$arr_input['content'] = $content;
return $this->modelServiceObj->commentPicture($arr_input);
发出的评论内容:   <a href='www.baidu.com'>baidu</a>
$arr_input['content'] = htmlspecialchars($content);之后,发布的内容前后对比:

a

b

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics