找传奇、传世资源到传世资源站!

php xss问题参数处理 示例代码

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

调用方法:
$url='https://www.5t6t.com/?name=xiaoma';echo clearxss($url);

function clearxss($getstr,$repstr=''){if (strlen($getstr) == 0 || is_null($getstr)){return $getstr;}$pattern = array('/\bstyle\b/i','/\bexpression\b/i','/\bon\w{4,30}\s*=/i','/[\']/','/\bcookie\b/i','/\bdocument\b/i','/\blocalStorage\b/i','/\balert\b/i','/\bconfirm\b/i','/\bopen\b/i','/\bclose\b/i','/\blocation\b/i','/\beval\b/i','/\bfunction\b/i','/\bwrite\b/i');$rep = array_fill(0,count($pattern),'');$getstr = preg_replace($pattern, $rep, $getstr);$getstr = strip_tags($getstr);return $getstr;}

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复