php UnicodeEncode 转中文

function new_unicodeDecode($unicode_str){
    // 替换 u 的 实例 :u5b89u94c1
   

    $u = 'u';
    if (substr($unicode_str, 0, strlen($u)) === $u) {
        $unicode_str = str_replace('u', '\u', $unicode_str);
    }
    $s1 = '/';
    if(strstr($unicode_str,$s1)){
        $unicode_str = str_replace("/","\\",$unicode_str);
    }
    $json = '{"str":"'.$unicode_str.'"}';
    $arr = json_decode($json,true);
    if(empty($arr)) return '';
    return $arr['str'];
}

你可能感兴趣的:(php)