Home > php教程 > PHP源码 > body text

php 读取xml的方法三---xmlreader来读取xml数据

PHP中文网
Release: 2016-05-25 17:14:56
Original
1214 people have browsed it

xml源文件

<?xml version="1.0 encoding="UTF-8"?>
  <humans>
  <zhangying>
  <name>张映</name>
  <sex>男</sex>
  <old>28</old>
  </zhangying>
  <tank>
  <name>tank</name>
  <sex>男</sex>
  <old>28</old>
  </tank>
  </humans>
Copy after login
<?php
$reader = new XMLReader();
$reader->open(&#39;person.xml&#39;);                                                     //读取xml数据
$i=1;
while ($reader->read()) {                                                              //是否读取
if ($reader->nodeType == XMLReader::TEXT) {               //判断node类型
  if($i%3){
   echo $reader->value;                                                                  //取得node的值
  }else{
   echo $reader->value."<br>" ;
  }
  $i++;
}
}
?>
Copy after login
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template