Php reading xml

Source: Internet
Author: User
I have an xml file like this for php to read XML. I want to output question, oid, and content, and the output format is: question: 542 option: A & nbsp; content: 1111111 option: B & nbsp; content: 2222222 question: 123 option: C & nbsp; content: 3333333 option: D & nbsp; content: php reading xml
I have an XML file like this. I want to output question, oid, and content in the following format:
Problem: 542
Option: A content: 1111111
Option: Content of B: 2222222
Problem: 123
Option: C content: 3333333
Option: D content: 4444444
What should I do?
 

   3
  admin
  
    
       542
      
         A
         1111111
      
      
         B
         2222222
      
    
    
       123
      
         C
         3333333
      
      
         D
         4444444
      
    
  

Xml php
------ Solution --------------------
$s =<<< XML


   3
  admin
  
    
       542
      
         A
         1111111
      
      
         B
         2222222
      
    
    
       123
      
         C
         3333333
      
      
         D
         4444444
      
    
  

XML;

$xml = simplexml_load_string($s);

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.