The encodeURI () function can encode a string as a URI and replace the character with a hexadecimal escape sequence. The decodeURI () function can decode the URI encoded by the encodeURI () function. The characters after the encodeURI () of js are generally UTF-8 encoded. if the server side is encoded with different codes, icoSynta is required.
The encodeURI () function can encode a string as a URI and replace the character with a hexadecimal escape sequence.
The decodeURI () function can decode the URI encoded by the encodeURI () function.
Generally, the characters after the encodeURI () of js are UTF-8 encoded. if the server-side encoding is different, iconv conversion is required.
$ A = urlencode (iconv ("gb2312", "UTF-8", "movie"); // equivalent to javascript encodeURI ("Movie ");
Echo $;
$ B = iconv ("UTF-8", "gb2312", urldecode ("% E7 % 94% B5 % E5 % BD % B1 ")); // equivalent to javascript decodeURI ("% E7 % 94% B5 % E5 % BD % B1 ");
Echo $ B;
?>