zoukankan      html  css  js  c++  java
  • php解码js使用escape转码的函数

    /**
    * 功能和js unescape函数,解码经过escape编码过的数据
    * @param $str
    */ 
    function unescape($str) 
    { 
        $ret = '';
        $len = strlen($str);
        for ($i = 0; $i < $len; $i ++) 
        { 
            if ($str[$i] == '%' && $str[$i + 1] == 'u') 
            { 
                $val = hexdec(substr($str, $i + 2, 4));
                if ($val < 0x7f) 
                    $ret .= chr($val);
                else 
                    if ($val < 0x800) 
                        $ret .= chr(0xc0 | ($val >> 6)) .
                         chr(0x80 | ($val & 0x3f));
                    else 
                        $ret .= chr(0xe0 | ($val >> 12)) .
                         chr(0x80 | (($val >> 6) & 0x3f)) .
                         chr(0x80 | ($val & 0x3f));
                $i += 5;
            } else 
                if ($str[$i] == '%') 
                { 
                    $ret .= urldecode(substr($str, $i, 3));
                    $i += 2;
                } else 
                    $ret .= $str[$i];
        } 
        return $ret;
    } 
    /**
    * 功能是js escape php 实现
    * @param $string           the sting want to be escaped
    * @param $in_encoding      
    * @param $out_encoding     
    */ 
    function escape($string, $in_encoding = 'UTF-8',$out_encoding = 'UCS-2') { 
        $return = '';
        if (function_exists('mb_get_info')) { 
            for($x = 0; $x < mb_strlen ( $string, $in_encoding ); $x ++) { 
                $str = mb_substr ( $string, $x, 1, $in_encoding );
                if (strlen ( $str ) > 1) { // 多字节字符
                    $return .= '%u' . strtoupper ( bin2hex ( mb_convert_encoding ( $str, $out_encoding, $in_encoding ) ) );
                } else { 
                    $return .= '%' . strtoupper ( bin2hex ( $str ) );
                } 
            } 
        } 
        return $return;
    }

    经测试这段代码能正常显示中文。

  • 相关阅读:
    Redis学习-发布/订阅
    Redis学习-Sentinel
    Redis学习-复制
    Redis学习-持久化
    Redis学习-Set
    Redis学习-SortedSet
    mac下使用apktool反编译
    ImageView setImageURI图片不改变NetWorkImageView 不显示的问题
    使用SharedPreference和对象流存储对象
    解决百度云推送通知,不显示默认Notification
  • 原文地址:https://www.cnblogs.com/jackson-leung/p/4349843.html
Copyright © 2011-2022 走看看