Parse JSON and XML in PHP

Source: Internet
Author: User

Introduction: This is a detailed page for PHP to parse JSON and XML. It introduces PHP, related knowledge, skills, experience, and some PHP source code.

Class = 'pingjiaf' frameborder = '0' src = 'HTTP: // biancheng.dnbc?info/pingjia.php? Id = 345300 'rolling = 'no'>

Like most popular Web services, such as Twitter, which provides data through open APIs, it always knows how to parse various transfer formats of API data, including JSON and XML.

Parse JSON data using PHP

$ Json_string = '{"ID": 1, "name": "foo", "email": "foo@foobar.com", "interest": ["WordPress ", "php"]} ';
$ OBJ = json_decode ($ json_string );
Echo $ obj-> name; // prints foo
Echo $ obj-> interest [1]; // prints PHP

PHP parses XML data

$ Xml_string = "<? XML version = '1. 0'?>
<Users>
<User id = '000000'>
<Name> Foo </Name>
<Email> foo@bar.com </Name>
</User>
<User id = '000000'>
<Name> foobar </Name>
<Email> foobar@foo.com </Name>
</User>
</Users> ";

// Load the XML string using simplexml
$ Xml = simplexml_load_string ($ xml_string );

// Loop through the each node of user
Foreach ($ XML-> User as $ user)
{
// Access attribute
Echo $ user ['id'], '';
// Subnodes are accessed by-> Operator
Echo $ user-> name ,'';
Echo $ user-> email, '<br/> ';
}

Love J2EE follow Java Michael Jackson video station JSON online tools

Http://biancheng.dnbcw.info/php/345300.html pageno: 4.

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.