微信中使用Emoji表情,PHP转义代码


public 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'];
}
$this->unicode2utf8_2("\ue159")."【公交/地铁】";


Emoji表情代码大全

http://www.oicqzone.com/tool/emoji/

猜你喜欢

转载自blog.csdn.net/xocom/article/details/80904578