Home php教程 PHP源码 php 读取xml的方法三---xmlreader来读取xml数据

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

May 25, 2016 pm 05:14 PM

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('person.xml');                                                     //读取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
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

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)