PHP正则过滤处理微信昵称中emoji字符的方法
发布:smiling 来源: PHP粉丝网 添加日期:2018-11-15 09:41:23 浏览: 评论:0
本文实例讲述了PHP正则过滤处理微信昵称中emoji字符的方法。分享给大家供大家参考,具体如下:
今天刚做了一个微信应用,在获取微信昵称的过程中报错了,经查原因是微信昵称中包含emoji字符,在写入数据库的时候出错,所以想办法在写入之前把这些字符过滤掉,于是在网上找到一个方法,记录一下。
移除微信昵称中的emoji字符:
- function removeEmoji($nickname) {
- $clean_text = "";
- // Match Emoticons
- $regexEmoticons = '/[\x{1F600}-\x{1F64F}]/u';
- $clean_text = preg_replace($regexEmoticons, '', $text);
- // Match Miscellaneous Symbols and Pictographs
- $regexSymbols = '/[\x{1F300}-\x{1F5FF}]/u';
- $clean_text = preg_replace($regexSymbols, '', $clean_text);
- // Match Transport And Map Symbols
- $regexTransport = '/[\x{1F680}-\x{1F6FF}]/u';
- $clean_text = preg_replace($regexTransport, '', $clean_text);
- // Match Miscellaneous Symbols
- $regexMisc = '/[\x{2600}-\x{26FF}]/u';
- $clean_text = preg_replace($regexMisc, '', $clean_text);
- // Match Dingbats
- $regexDingbats = '/[\x{2700}-\x{27BF}]/u';
- $clean_text = preg_replace($regexDingbats, '', $clean_text);
- return $clean_text;
- }
另外还发现一个github开源应用,还没有研究测试。
https://github.com/iamcal/php-emoji
补充:今天又在网上找到一个更简单的方法
- // 过滤掉emoji表情
- function filterEmoji($str)
- {
- $str = preg_replace_callback( '/./u',
- function (array $match) {
- return strlen($match[0]) >= 4 ? '' : $match[0];
- },
- $str);
- return $str;
- }
Tags: PHP正则过滤 emoji
相关文章
- ·php正则过滤指定html标签示例(2015-04-09)
- ·php使用正则过滤js脚本代码实例(2020-12-12)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)