侧边栏壁纸
博主头像
流苏小筑 博主等级

行动起来,活在当下

  • 累计撰写 139 篇文章
  • 累计创建 57 个标签
  • 累计收到 9 条评论

目 录CONTENT

文章目录
PHP

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

Administrator
2019-05-13 / 0 评论 / 0 点赞 / 2 阅读 / 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

评论区