PHPjavascript的escape和unescape函数

    xiaoxiao2021-03-25  109

    JavaScript unescape() escape() 函数

    <script type="text/javascript"> var test1="hhh‘hhh" test1=escape(test1) document.write("escape : "+test1 + "<br />") test1=unescape(test1) document.write("unescape : "+test1 + "<br />") </script>

    运行结果

    escape : hhh%u2018hhh unescape : hhh‘hhh

    php 函数 实现 js escape unescape

    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; } 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; } public function index() { $str = 'hhh’hhh'; $str = escape($str); dump(str); $str = unescape($str); dump(str); }

    结果:

    hhh%u2018hhh hhh’hhh

    转载请注明原文地址: https://ju.6miu.com/read-9558.html

    最新回复(0)