//解析emoji字符
	public function userTextDecode($str){
	    $text = json_encode($str); //暴露出unicode
	    $text = preg_replace_callback("/\\\\\\\\/i",function($str){
	        return '\\';
	    },$text); //将两条斜杠变成一条,其他不动
	    return json_decode($text);
	}

	//转译emoji字符
	public function userTextEncode($str){
	    if(!is_string($str)) return $str;
	    if(!$str || $str=='undefined') return '';
	    $text = json_encode($str); //暴露出unicode
	    $text = preg_replace_callback("/(\\\u[ed][0-9a-f]{3})/i",function($str){
	        return addslashes($str[0]);
	    },$text); //将emoji的unicode留下,其他不动,这里的正则比原答案增加了d,因为我发现我很多emoji实际上是\ud开头的,反而暂时没发现有\ue开头。
	    return json_decode($text);
	}

 

posted on 2018-09-29 09:49  丿小橙子  阅读(16)  评论(0编辑  收藏  举报