当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP XMLReader::next()用法及代码示例



定义和用法

XML 是一种 mark-up 语言,用于在网络上共享数据,XML 用于人类 read-able 和机器 read-able。 XMLReader 扩展用于读取/检索 XML 文档的内容,即使用 XMLReader 类的方法可以读取 XML 文档的每个节点。

这个XMLReader::next()XMLReader 类的函数将当前 XML 文件上的光标移动到下一个节点(跳过子树)。

用法

XMLReader::next($local_name);

参数

Sr.No 参数及说明
1

local_name (Optional)

这是一个字符串值,表示要移动的下一个节点的名称。

返回值

此函数返回一个布尔值,成功时为 TRUE,失败时为 FALSE。

PHP版本

这个函数最初是在 PHP 版本 5 中引入的,并且适用于所有后续版本。

示例

下面的例子演示了XMLReader::next()函数 -

data.xml

<Data>
   <Employee>
      <Name>Krishna</Name>
      <Age>22</Age>
      <City>Hyderabad</City>   
   </Employee>

   <Employee>
      <Name>Raju</Name>
      <Age>30</Age>
      <City>Delhi</City>
   </Employee>
</Data>

sample.php

<?php
   //Creating an XMLReader
   $reader = new XMLReader();

   //Opening a reader
   $reader->open("data.xml");

   //reading the contents of the XML file
   while($reader->next()){
      print($reader->readString());
   }
   //Closing the reader
   $reader->close();
?>

这将产生以下结果 -

Krishna
22
Hyderabad

Raju
30
Delhi

示例

以下是此函数的另一个示例 -

data.xml

<?xml version="1.0" encoding="utf-8"?>
<Tutorials>
   <Tutorial>
      <Name>JavaFX</Name>
      <Pages>535</Pages>
      <Author>Krishna</Author>
      <Version>11</Version>
   </Tutorial>

   <Tutorial>
      <Name>CoffeeScript</Name>
      <Pages>235</Pages>
      <Author>Kasyap</Author>
      <Version>2.5.1</Version>
   </Tutorial>
</Tutorials>

sample.php

<?php
   //Creating an XMLReader
   $reader = new XMLReader();

   //Opening a reader
   $reader->open("mydata.xml");

   //Reading the contents
   $reader->read();
   $reader->read();
   $reader->next();
   print($reader->name."\n");

   $reader->read();
   $reader->next();
   print($reader->name);
   $reader->read();

   //Closing the reader
   $reader->close();
?>

这将产生以下结果 -

Tutorial
Name

示例

以下是带有可选参数的此函数的示例 -

mydata.xml

<data> 
   <name>Raju</name> 
   <age>32</age> 
   <phone>9848022338</phone> 
   <city>Hyderabad</city>
</data>

sample.php

<?php
   //Creating an XMLReader
   $reader = new XMLReader();

   //Opening a reader
   $reader->open("test.xml");

   //Reading the contents of XML document
   $reader->read(); 
   $reader->read();
   $reader->next("phone");

   //Reading the contents
   print($reader->name."\n");
   print($reader->readString());

   //Closing the reader
   $reader->close();
?>

这将产生以下结果 -

phone
9848022338

相关用法


注:本文由纯净天空筛选整理自 PHP - XMLReader::next() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。