Phpjsonp single quotes escape

Source: Internet
Author: User
: This article mainly introduces the single quotes escape of phpjsonp. For more information about PHP tutorials, see. PHP single quotes and double quotes can modify string data. if the modified string contains a variable (for example, $ name), the biggest difference is that double quotes replace the variable value, the single quotation mark will output it as a string.

The following format is generally used for jsonp output in php:

Callbackname ('json string ');

If the json string in the middle contains single quotation marks, this output is problematic and the caller cannot handle it. Therefore, we need to escape single quotation marks.

If json_encode is used to generate an object, you can use the following method to escape the object:

$ Ret = json_encode ($ result, JSON_HEX_APOS); header ('content-Type: text/javascript; charset = utf-8 '); echo $ callback. '(\''. $ ret. '\');';

Here, JSON_HEX_APOS is provided by php to replace the single quotation mark with \ u0027.

For string concatenation, you can use the following method:

$ JsonData = preg_replace ('/\'/',' \ u0027 ', $ jsonData );

And then output.

The preceding section describes the single-byte escape of php jsonp, including the single-byte escape of jsonp. if you 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.