ThinkPHP uses the GET method to GET the Chinese parameter query result-less solution _ php instance

Source: Internet
Author: User
This article describes how ThinkPHP uses the GET method to obtain the query results of Chinese parameters. if you want to use ThinkPHP as a tags tag, a problem occurs, parameters can be obtained, but no results can be found. The data found in the database exists. Where is the problem?

Such as http:/response

The parameter is encoded by urlencode (). The urldecode () function is used for decoding, and no result is returned for further query.
Then test the iconv () function, and the result is successful.

The default browser encoding is GB2312, and this project uses UTF-8 encoding.
The following describes the error code and the corrected code:

$ Kw = $ _ GET ['_ URL _'] ['2']; // the error code contains parameters that can be obtained on iis but cannot be queried. $ Kw = iconv ("gb2312", "UTF-8", $ _ GET ['_ URL _'] ['2']); // encoded, results that can be queried.

In addition,This method is only applicable to the iis environment..
Note that when $ _ GET receives parameters, the urldecode transcoding function is available. you do not need to perform the urldecode decoding operation!

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.