PHP learning notes: Use php to read xml files and take notes in xml

Source: Internet
Author: User

PHP learning notes: Use php to read xml files and take notes in xml

Xml has been gradually replaced by json. Currently, APIs are all using json, but some old websites still use xml.

Here, the default xml file is address. xml, which is stored in the same directory as the read PHP file. The xml content is as follows:

 

<? Xml version = "1.0" encoding = "UTF-8"?> <Note> <name> Jian qingwang </name> <address> guanyang village, Meilin town, Nanjing County, Zhangzhou City, Fujian Province </address> <tel> 17095921320 </tel> <code> 363609 </ code> <school> 

 

Xml reading Method 1:

<? Php $ xml = simplexml_load_file ('address. xml'); // In the output, the content is a var_dump ($ xml); echo ("<br/> "); // read Jane qingwang echo $ xml-> name; echo ("<br/> "); // read the echo $ xml-> school-> highschool-> name;?>

Xml reading Method 2:

 

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.