首页 > 网站 > 建站经验 > 正文

PHP实 现过滤掉非汉字字符只保留中文字符

2019-11-02 14:14:31
字体:
来源:转载
供稿:网友

   这篇文章主要介绍了PHP实现过滤掉非汉字字符只保留中文字符,本文直接给出实现代码,需要的朋友可以参考下

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 <?php   $str = "a 1b 2b<中文>。xxyy字符";   //转换 GB2312 -> UTF-8 $str = mb_convert_encoding($str, 'UTF-8', 'GB2312');   preg_match_all('/[x{4e00}-x{9fff}]+/u', $str, $matches); $str = join('', $matches[0]);  
破晓电影网[www.aikan.tv/special/poxiaodianyingwang/]
//转换 UTF-8 -> GB2312 $str = mb_convert_encoding($str, 'GB2312', 'UTF-8');   echo $str; //输出 中文字符   ?>
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表