Home > php教程 > php手册 > body text

(1)php微信开发之符号表情

WBOY
Release: 2016-06-06 20:02:19
Original
1569 people have browsed it

再看 柳峰 老师 http://blog.csdn.net/lyq8479/article/details/9393097 的微信博文的是后发现php发送的原样输出 由于 php 对Unicode的支持不是好 java,c# 中 不需要转换,直接发送给微信就可以转换成符号 function unicode2utf8_2($str){//关于unicode编码转

再看 柳峰老师 http://blog.csdn.net/lyq8479/article/details/9393097 的微信博文的是后发现php发送的原样输出


由于 php 对Unicode的支持不是好

java,c# 中 不需要转换,直接发送给微信就可以转换成符号

function unicode2utf8_2($str){	//关于unicode编码转化的第二个函数,用于显示emoji表情
$str = '{"result_str":"'.$str.'"}';	//组合成json格式
$strarray = json_decode($str,true);	//json转换为数组,利用 JSON 对 \uXXXX 的支持来把转义符恢复为 Unicode 字符(by 梁海)
return $strarray['result_str'];
}
$resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType,"自行车".unicode2utf8_2("\ue136")." 男人".unicode2utf8_2("\ue138")." 钱袋".unicode2utf8_2("\ue12f")." 情侣".unicode2utf8_2("\ue428")." 公共汽车".unicode2utf8_2("\ue159"));
echo $resultStr;
Copy after login

(1)php微信开发之符号表情
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template