Home  >  Article  >  php教程  >  php 读取xml的方法三---xmlreader来读取xml数据

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

PHP中文网
PHP中文网Original
2016-05-25 17:14:561160browse

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>
<?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++;
}
}
?>
Statement:
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