侧边栏壁纸
博主昵称
流苏小筑

步伐虽小,密而不止

PHP自定义函数(7)--- 特殊字符过滤

2019年05月13日 66阅读 0评论 0点赞
function format_str1($str){
    $str = str_replace("\r\n","",$str);
    $str = str_replace("\n","",$str);
    $str = str_replace("\r","",$str);
    $str = str_replace("'","&#39",$str);
    $str = str_replace("\"","б▒",$str);
    $str = str_replace("<","г╝",$str);
    $str = str_replace(">","г╛",$str);
    $str = str_replace("php","",$str);
  //$str = str_replace("?","г┐",$str);
    $str = str_replace("eval","",$str);
    $str = str_replace("%","ге",$str);
    $str = str_replace("$","",$str);
    $str = str_replace("script"," ",$str);
  //$str = str_replace("="," ",$str);
    $str = str_replace("and"," ",$str);
    $str = str_replace("select"," ",$str);
    $str = str_replace("delete"," ",$str);
    $str = str_replace("update"," ",$str);
    return $str;
}
0

—— 评论区 ——

昵称
邮箱
网址
取消
博主栏壁纸
博主头像 流苏小筑

步伐虽小,密而不止

133 文章数
27 标签数
16 评论量