温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

PHP中过滤字符串的方法有哪些

发布时间:2021-01-20 14:57:42 阅读:164 作者:Leah 栏目:开发技术
PHP开发者专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

这篇文章将为大家详细讲解有关PHP中过滤字符串的方法有哪些,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。

<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1, user-scalable=no">
<title>PHP字符串的过滤方法</title>
</head>
<body>
<?php
function strFilter($str){
  //特殊字符的过滤方法
  $str str_replace('`'''$str);
  $str str_replace('·'''$str);
  $str str_replace('~'''$str);
  $str str_replace('!'''$str);
  $str str_replace('!'''$str);
  $str str_replace('@'''$str);
  $str str_replace('#'''$str);
  $str str_replace('$'''$str);
  $str str_replace('¥'''$str);
  $str str_replace('%'''$str);
  $str str_replace('^'''$str);
  $str str_replace('……'''$str);
  $str str_replace('&'''$str);
  $str str_replace('*'''$str);
  $str str_replace('('''$str);
  $str str_replace(')'''$str);
  $str str_replace('('''$str);
  $str str_replace(')'''$str);
  $str str_replace('-'''$str);
  $str str_replace('_'''$str);
  $str str_replace('——'''$str);
  $str str_replace('+'''$str);
  $str str_replace('='''$str);
  $str str_replace('|'''$str);
  $str str_replace('\\'''$str);
  $str str_replace('['''$str);
  $str str_replace(']'''$str);
  $str str_replace('【'''$str);
  $str str_replace('】'''$str);
  $str str_replace('{'''$str);
  $str str_replace('}'''$str);
  $str str_replace(';'''$str);
  $str str_replace(';'''$str);
  $str str_replace(':'''$str);
  $str str_replace(':'''$str);
  $str str_replace('\''''$str);
  $str str_replace('"'''$str);
  $str str_replace('“'''$str);
  $str str_replace('”'''$str);
  $str str_replace(','''$str);
  $str str_replace(','''$str);
  $str str_replace('<'''$str);
  $str str_replace('>'''$str);
  $str str_replace('《'''$str);
  $str str_replace('》'''$str);
  $str str_replace('.'''$str);
  $str str_replace('。'''$str);
  $str str_replace('/'''$str);
  $str str_replace('、'''$str);
  $str str_replace('?'''$str);
  $str str_replace('?'''$str);
  //防sql防注入代码的过滤方法
  $str str_replace('and','',$str);
  $str str_replace('execute','',$str);
  $str str_replace('update','',$str);
  $str str_replace('count','',$str);
  $str str_replace('chr','',$str);
  $str str_replace('mid','',$str);
  $str str_replace('master','',$str);
  $str str_replace('truncate','',$str);
  $str str_replace('char','',$str);
  $str str_replace('declare','',$str);
  $str str_replace('select','',$str);
  $str str_replace('create','',$str);
  $str str_replace('delete','',$str);
  $str str_replace('insert','',$str);
  $str str_replace('or','',$str);
  return trim($str);
}
$cont '  ?”?;onestopweb.cn and update //\ as chaoyi 》、  ';
echo '开始['.strFilter($cont).']结束';
?>
</body>
</html>

效果图如下:

PHP中过滤字符串的方法有哪些

关于PHP中过滤字符串的方法有哪些就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI

开发者交流群×