当前位置:网站首页>phpexcel导出emoji符号报错
phpexcel导出emoji符号报错
2022-07-26 09:23:00 【为天空着色】
原文:http://blog.csdn.net/SakuraLLj/article/details/72823765
phpexcel导出用户数据成excel时,如果昵称包含表情,会导致数据不完整。
过滤或替换emoji。因为emoji通过json_encode后,大部分都是u[ed] 开头的编码,所以先对昵称json_encode然后用正则过滤或替换成*,以下时相关代码:
$value = json_encode($value);
$value = preg_replace("/\\\u[ed][0-9a-f]{3}\\\u[ed][0-9a-f]{3}/","*",$value);//替换成*
$value = json_decode($value);
边栏推荐
猜你喜欢
js在控制台输出菱形
神经网络与深度学习-6- 支持向量机1 -PyTorch
el-table实现增加/删除行,某参数跟着变
您的登录IP不在管理员配置的登录掩码范围内
2022 tea artist (intermediate) special operation certificate examination question bank simulated examination platform operation
arcgis的基本使用1
Qtcreator reports an error: you need to set an executable in the custom run configuration
JS output diamond on the console
Under a directory of ext3 file system, subfolders cannot be created, but files can be created
[MySQL] detailed explanation of redo log, undo log and binlog (4)
随机推荐
I'm faded
自定义密码输入框,无圆角
会议OA项目(三)---我的会议(会议排座、送审)
Stm32+mfrc522 completes IC card number reading, password modification, data reading and writing
756. Serpentine matrix
省政府召开全省高温天气安全防范工作电视电话会议
Qtcreator reports an error: you need to set an executable in the custom run configuration
838. 堆排序
[MySQL] detailed explanation of MySQL lock (III)
TableviewCell高度自适应
对象型的集合按某个属性的值进行去重
Object type collections are de duplicated according to the value of an attribute
Local cache
Pat grade a A1034 head of a gang
JS - DataTables control on the number of displays per page
csdn空格用什么表示
“could not build the server_names_hash, you should increase server_names_hash_bucket_size: 32” 问题处理
TabbarController的封装
Sending and receiving of C serialport
js在控制台输出菱形