PHP parsing HTTP Get JSON string variable is always blank null_php tutorial

Source: Internet
Author: User

PHP Parse HTTP gets JSON string variable is always blank null


This article mainly introduces the PHP parsing HTTP GET JSON string variable is always blank null solution, personal experience of the summary, recommended here to you.

There is a problem with the colleague project today, the JSON string obtained through the HTTP interface is never parsed correctly using Json_decode, which returns white space.

Directly copy the result string to manually create a variable but normal, in the front-end JS can also parse, engaged in a half-day not its solution, with the help of powerful Google solved the problem, the answer is the interface spit out the result contains a BOM head, BOM head this thing is PHP's mortal enemy AH

Do not say, the immediate solution:

The code is as follows:


if (substr ($return, 0,3) = = Pack ("CCC", 0XEF,0XBB,0XBF)) {
$return = substr ($return, 3);
}
$data = Json_decode ($return, true);

Here to record, share to everyone, hope to be helpful to everyone.

http://www.bkjia.com/PHPjc/962931.html www.bkjia.com true http://www.bkjia.com/PHPjc/962931.html techarticle PHP parsing http GET JSON string variable is always blank null this article mainly introduces PHP parsing http gets the JSON string variable is always blank null solution, personal experience Summary, ...

  • 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.