Chinaunix首页 | 论坛 | 博客
  • 博客访问: 185288
  • 博文数量: 43
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 427
  • 用 户 组: 普通用户
  • 注册时间: 2015-07-13 12:01
文章分类

全部博文(43)

文章存档

2023年(2)

2022年(4)

2021年(2)

2020年(1)

2019年(15)

2016年(7)

2015年(12)

我的朋友

分类: PHP

2022-03-03 16:12:30

在网页程序录入中,有时候会录入不规范的字符,如全角的中文字符和全角的英文字符,而这种字符有时候写入到数据库中是非法的,那么后台如何对这些字符进行处理将其转化为合法字符就很有必要了。如下函数可将字符串中的全角中文字符和全角应为字符,自动替换为正确的英文半角字符,并且可根据需求,判断所输入的字符中是否含有非法项。

/*****************************************************************************
* 将一个字串中含有中文全角或英文全角的数字、字母、空格及其它特殊字符转换为相 *
* 应半角字符                                                                 *
******************************************************************************/
function strCheck($str)
{
$arr = array(
'0' => '0', '1' => '1', '2' => '2', '3' => '3', '4' => '4', '5' => '5', '6' => '6', '7' => '7', '8' => '8', '9' => '9',
'A' => 'A', 'B' => 'B', 'C' => 'C', 'D' => 'D', 'E' => 'E', 'F' => 'F', 'G' => 'G', 'H' => 'H', 'I' => 'I', 'J' => 'J', 'K' => 'K', 'L' => 'L', 'M' => 'M', 'N' => 'N', 'O' => 'O', 'P' => 'P', 'Q' => 'Q', 'R' => 'R', 'S' => 'S', 'T' => 'T', 'U' => 'U', 'V' => 'V', 'W' => 'W', 'X' => 'X', 'Y' => 'Y', 'Z' => 'Z', 
'a' => 'a', 'b' => 'b', 'c' => 'c', 'd' => 'd', 'e' => 'e', 'f' => 'f', 'g' => 'g', 'h' => 'h', 'i' => 'i', 'j' => 'j', 'k' => 'k', 'l' => 'l', 'm' => 'm', 'n' => 'n', 'o' => 'o', 'p' => 'p', 'q' => 'q', 'r' => 'r', 's' => 's', 't' => 't', 'u' => 'u', 'v' => 'v', 'w' => 'w', 'x' => 'x', 'y' => 'y', 'z' => 'z',
'(' => '(', ')' => ')', '{' => '{', '}' => '}','【' => '[', '『' => '{', '』' => '}',  '】' => ']', '〖' => '[', '〗' => ']', '<' => '<', '>' => '>',
'“' => '"', '”' => '"','‘' => '\'', '’' => '\'', ':' => ':', '。' => '.', '、' => ',', ',' => ',', ';' => ';', '?' => '?', '!' => '!', '……' => '.', '〃' => '"',
'《' => '<', '》' => '>', '%' => '%', '&'=>'&', '#' => '#', '¥' => '$', '$' => '$', '+' => '+', '—' => '-', '-' => '-', '×'=>'*', '*'=>'*', '~' => '-', '‖' => '|', '|' => '|', '`' => '`', ' ' => ' ');
return strtr($str, $arr);
}


/*****************************************************************************
* 所有的中文及英文全角字符,通过strCheck函数转换为半角后,再检测是否存在如下 *
* 非法的字符,如果存在则不允许写入数据库,否则数据库字段会出错。被注释行为允 *
* 许出现的字符                                                               *
******************************************************************************/
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);
return $str;
}

调用方式举例:注意标注的绿色与红色字符,其中绿色为strFilter函数中设置的不允许出现字符,红色为允许出现字符,数字为中文全角字符
$str="012三伏@我们#345";
echo $str."
";
echo strCheck($str)."
";
echo strFilter(strCheck($str));

运行后显示结果:
012三伏@我们#345
012三伏@我们#345
012三伏我们#345


阅读(3924) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~