码迷,mamicode.com
首页 > 其他好文 > 详细

strtr对用户输入的敏感词汇进行过滤

时间:2016-11-26 17:03:13      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:com   ring   log   turn   class   return   rip   div   cti   

/**
 * 过滤用户输入的基本数据,防止script攻击
 *
 * @access      public
 * @return      string
 */
function compile_str($str)
{
    $arr = array(‘<‘ => ‘<‘, ‘>‘ => ‘>‘,‘"‘=>‘”‘,"‘"=>‘’‘);

    return strtr($str, $arr);
}

 

strtr对用户输入的敏感词汇进行过滤

标签:com   ring   log   turn   class   return   rip   div   cti   

原文地址:http://www.cnblogs.com/wanghaokun/p/6104282.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!