Php parsing xml method example

Source: Internet
Author: User
This article mainly introduces the php xml parsing method, and analyzes the related skills of php XML parsing in the form of examples. For more information, see

This article mainly introduces the php xml parsing method, and analyzes the related skills of php XML parsing in the form of examples. For more information, see

This document describes in detail the xml Parsing Method in php as an example. Share it with you for your reference. The specific analysis is as follows:

The books. xml file is as follows:

<? Xml version = "1.0" encoding = "ISO-8859-1"?> Harry PotterJ k. Rowling 2005 29.99 Everyday ItalianGiada De Laurentiis 2005 30.00 Learning XMLErik T. Ray 2003 39.95

1. DOM parsing XML

<? Php // create a DOMDocument object $ doc = new DOMDocument (); // load the XML file $ doc-> load ("books. xml "); // get all book tags $ bookDom = $ doc-> getElementsByTagName (" book "); foreach ($ bookDom as $ book) {$ title = $ book-> getElementsByTagName ("title")-> item (0)-> nodeValue; $ author = $ book-> getElementsByTagName ("author ") -> item (0)-> nodeValue; $ year = $ book-> getElementsByTagName ("year")-> item (0)-> nodeValue; $ price = $ book-> getElementsByTagName ("price")-> item (0)-> nodeValue; echo "title :". $ title."
"; Echo" author: ". $ author ."
"; Echo" year: ". $ year ."
"; Echo" price: ". $ price ."
"; Echo "***********************************
";}?>

2. xml_parse_into_struct

Create a parser, parse the xml data to the array, release the parser, and then extract the desired value from the array.

<? Php // read xml file $ file = "books. xml "; $ data = file_get_contents ($ file); // create a parser $ parser = xml_parser_create (); // Parse XML data to the array xml_parse_into_struct ($ parser, $ data, $ vals, $ index); // release the parser xml_parser_free ($ parser); // array Processing $ arr = array (); $ t = 0; foreach ($ vals as $ value) {$ type = $ value ['type']; $ tag = $ value ['tag']; $ level = $ value ['level']; $ attributes = isset ($ value ['bubuckets'])? $ Value ['bubuckets']: ""; $ val = isset ($ value ['value'])? $ Value ['value']: ""; switch ($ type) {case 'open': if ($ attributes! = "" | $ Val! = "") {$ Arr [$ t] ['tag'] = $ tag; $ arr [$ t] ['bubuckets'] = $ attributes; $ arr [$ t] ['level'] = $ level; $ t ++;} break; case "complete": if ($ attributes! = "" | $ Val! = "") {$ Arr [$ t] ['tag'] = $ tag; $ arr [$ t] ['bubuckets'] = $ attributes; $ arr [$ t] ['val'] = $ val; $ arr [$ t] ['level'] = $ level; $ t ++;} break ;}} echo"

"; print_r($arr); echo "
";?>

3. Use the SAX Parser to read the XML-----XML Simple API (SAX) parser

<? Php $ file = "books. xml"; $ xml = simplexml_load_file ($ file); echo"

"; print_r($xml); echo "
";?>

I hope this article will help you with php programming.

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.