当前位置:首页 > PHP教程 > 正则表达式 > 列表

PHP正则过滤处理微信昵称中emoji字符的方法

发布:smiling 来源: PHP粉丝网  添加日期:2018-11-15 09:41:23 浏览: 评论:0 

本文实例讲述了PHP正则过滤处理微信昵称中emoji字符的方法。分享给大家供大家参考,具体如下:

今天刚做了一个微信应用,在获取微信昵称的过程中报错了,经查原因是微信昵称中包含emoji字符,在写入数据库的时候出错,所以想办法在写入之前把这些字符过滤掉,于是在网上找到一个方法,记录一下。

移除微信昵称中的emoji字符:

  1. function removeEmoji($nickname) { 
  2.   $clean_text = ""
  3.   // Match Emoticons 
  4.   $regexEmoticons = '/[\x{1F600}-\x{1F64F}]/u'
  5.   $clean_text = preg_replace($regexEmoticons''$text); 
  6.   // Match Miscellaneous Symbols and Pictographs 
  7.   $regexSymbols = '/[\x{1F300}-\x{1F5FF}]/u'
  8.   $clean_text = preg_replace($regexSymbols''$clean_text); 
  9.   // Match Transport And Map Symbols 
  10.   $regexTransport = '/[\x{1F680}-\x{1F6FF}]/u'
  11.   $clean_text = preg_replace($regexTransport''$clean_text); 
  12.   // Match Miscellaneous Symbols 
  13.   $regexMisc = '/[\x{2600}-\x{26FF}]/u'
  14.   $clean_text = preg_replace($regexMisc''$clean_text); 
  15.   // Match Dingbats 
  16.   $regexDingbats = '/[\x{2700}-\x{27BF}]/u'
  17.   $clean_text = preg_replace($regexDingbats''$clean_text); 
  18.   return $clean_text

另外还发现一个github开源应用,还没有研究测试。

https://github.com/iamcal/php-emoji

补充:今天又在网上找到一个更简单的方法

  1. // 过滤掉emoji表情 
  2. function filterEmoji($str
  3.   $str = preg_replace_callback( '/./u'
  4.       function (array $match) { 
  5.         return strlen($match[0]) >= 4 ? '' : $match[0]; 
  6.       }, 
  7.       $str); 
  8.    return $str

Tags: PHP正则过滤 emoji

分享到: