Php uses a regular expression to record data to read xml. the regular expression xml_PHP tutorial

Source: Internet
Author: User
Php uses a regular expression to record data to read xml. the regular expression is xml. Php uses a regular expression to record data to read xml. This document describes how php uses a regular expression to record data to read xml. I would like to share with you how php uses regular expressions to retrieve data and read xml.

This example describes how to use a regular expression to retrieve data in php to read xml. Share it with you for your reference. The specific analysis is as follows:

The xml source file is as follows:

<? Xml version = "1.0 encoding =" UTF-8 "?>
 
  
   
    
Zhang Ying
   
   
    
Male
   
   
    
28
   
  
  
   
    
Tank
   
   
    
Male
   
   
    
28
   
  
 

The PHP file is as follows:

<? Php $ xml = ""; $ f = fopen ('person. XML', 'r'); while ($ data = fread ($ f, 4096) {$ xml. = $ data;} fclose ($ f); // read data preg_match_all ("/\
 
  
(.*?) \ <\/Humans \>/s ", $ xml, $ humans ); // match the content of foreach ($ humans [1] as $ k => $ human) {preg_match_all ("/\
  
   
(.*?) \ <\/Name \>/", $ human, $ name); // match the name preg_match_all ("/\
   
    
(.*?) \ <\/Sex \>/", $ human, $ sex); // match the gender preg_match_all ("/\
    
     
(.*?) \ <\/Old \>/", $ human, $ old); // match the age} foreach ($ name [1] as $ key => $ val) {echo $ val. "-". $ sex [$ key] [1]. "-". $ old [$ key] [1]."
     
";}?>

I hope this article will help you with php programming.

Examples in this article describes how php reads xml by using regular expressions to record data. Share it with you...

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.