JQueryAJAX solution for submitting Chinese garbled characters js implementation php function urlencode

Source: Internet
Author: User
: This article mainly introduces the JQueryAJAX solution for submitting Chinese garbled characters. js implements the php function urlencode. For more information about PHP tutorials, see. 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;

?>

Http://www.2cto.com/kf/201107/95682.html

The above describes the JQuery AJAX solution for submitting Chinese garbled characters. js implements the php function urlencode, including some content, and hopes to help friends who are interested in the PHP Tutorial.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.