php怎样过滤掉特殊字符啊 ☺

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php怎样过滤掉特殊字符啊 ☺相关的知识,希望对你有一定的参考价值。

php怎样过滤掉特殊字符啊 ,过滤掉☺这些字符,只留下中文,英文,数字,标点符号 ,utf8编码的

  过滤掉特殊字符,可以考虑使用字符串替换的方法,在php中替换字符效率最高也是最简单字符替换函数str_replace函数。

  使用方法:str_replace(find,replace,string,count)

  参数说明:

     find 必需。规定要查找的值。 

     replace 必需。规定替换 find 中的值的值。

     string 必需。规定被搜索的字符串。

   count 可选。一个变量,对替换数进行计数。

  实例:

str_replace("iwind", "kiki", "i love iwind, iwind said");

  将输出 "i love kiki, kiki said"

  当然你也可以采取正则替换的方法,该函数是preg_replace

参考技术A 找蓝翔!选我选我

这个应该是emoji表情转义出来的,网上已经有开源的了!http://code.iamcal.com/php/emoji/ 你参考下!追问

是emoji没错,发短信变彩信了,是想去掉这些表情

参考技术B 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);
return trim($str);


写成了函数,过滤的时候调用一下追问

你这个正常字符都过滤了

追答

你不会把没用的都删掉啊

参考技术C 用编辑器替换掉 参考技术D 就不告诉你 嘿 就不告诉你追问

    好贱啊啊

追答

请采纳我的回答 32个赞~

PHP对表单提交特殊字符的过滤和处理

函数名 释义 介绍
htmlspecialchars将与、单双引号、大于和小于号化成HTML格式&转成&amp; 
"转成&quot;
‘ 转成&#039;
<转成&lt;
>转成&gt;
htmlentities()所有字符都转成HTML格式除上面htmlspecialchars字符外,还包括双字节字符显示成编码等。



addslashes单双引号、反斜线及NULL加上反斜线转义被改的字符包括单引号 (‘)、双引号 (")、反斜线 backslash (/) 以及空字符NULL。
stripslashes去掉反斜线字符去掉字符串中的反斜线字符。若是连续二个反斜线,则去掉一个,留下一个。若只有一个反斜线,就直接去掉。



quotemeta加入引用符号将字符串中含有 . // + * ? [ ^ ] ( $ ) 等字符的前面加入反斜线 "/" 符号。
nl2br()将换行字符转成<br>
strip_tags去掉HTML及PHP标记去掉字符串中任何 HTML标记和PHP标记,包括标记封堵之间的内容。注意如果字符串HTML及PHP标签存在错误,也会返回错误。
mysql_real_escape_string转义SQL字符串中的特殊字符转义 /x00  /n  /r  空格  /  ‘  " /x1a,针对多字节字符处理很有效。mysql_real_escape_string会判断字符集,mysql_escape_string则不用考虑。

转自http://blog.csdn.net/jianglei421/article/details/5460810

一般我是这样使用的:

kindedit编辑器:
从post来的进行addslashes后就可存入数据库了,取出后直接echo即可
普通的文本:
1.htmlspecialchars接着addslashes存入数据库,取出后直接echo即可。
2.addslashes存入数据库,取出后htmlspecialchars输出。
说明:
addslashes仅仅是为了让原来的字符正确地进入数据库。
htmlspecialchars是吧html标签转化掉。

额外:

magic_quotes_gpc函数在php中的作用是判断解析用户提示的数据,如包括有:post、get、cookie过来的数据增加转义字符“\”,以确保这些数据不会引起程序,特别是数据库语句因为特殊字符引起的污染而出现致命的错误

在magic_quotes_gpc=On的情况下,如果输入的数据有

单引号(’)、双引号(”)、反斜线()与 NUL(NULL 字符)等字符都会被加上反斜线。这些转义是必须的,如果这个选项为off,那么我们就必须调用addslashes这个函数来为字符串增加转义。

正是因为这个选项必须为On,但是又让用户进行配置的矛盾,在PHP6中删除了这个选项,一切的编程都需要在magic_quotes_gpc=Off下进行了。在这样的环境下如果不对用户的数据进行转义,后果不仅仅是程序错误而已了。同样的会引起数据库被注入攻击的危险。所以从现在开始大家都不要再依赖这个设置为On了,以免有一天你的服务器需要更新到PHP6而导致你的程序不能正常工作。

以上是关于php怎样过滤掉特殊字符啊 ☺的主要内容,如果未能解决你的问题,请参考以下文章

JAVA特殊字符过滤方法

使用 bash 脚本从输入字符串中过滤掉 ABC 字符、数字 123 和特殊字符

这里的这些小符号怎么打出来 php 怎么去除 或者 替换掉 这些特殊字符?

从字符串中过滤掉 url

php过滤微信特殊字符方案--》2017新版

oracle怎样才能把特殊字符存到数据库里面去了