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


PHP XMLReader read()用法及代码示例


XMLReader::read()函数是PHP中的内置函数,用于移至文档中的下一个节点。因此,此函数用于遍历XML文档。

用法:

bool XMLReader::read( void )

参数:此函数不接受任何参数。



返回值:如果成功,则此函数返回TRUE;如果失败,则返回FALSE。

下面给出的程序说明了PHP中的XMLReader::read()函数:

程序1:在此程序中,遍历文件后将获得元素的值data.xml

文件名:data.xml

<?xml version="1.0" encoding="utf-8"?> 
<div1> 
    <h1> GeeksforGeeks </h1> 
</div1>

文档名称: index.php

<?php 
  
// Create a new XMLReader instance 
$XMLReader = new XMLReader(); 
  
// Open the XML file 
$XMLReader->open('data.xml'); 
  
// Iterate through the XML nodes to 
// reach the h1 element's text  
// (Only four times) 
$XMLReader->read(); 
$XMLReader->read(); 
$XMLReader->read(); 
$XMLReader->read(); 
  
// Print the value of element 
echo "The text inside is:"
    . "$XMLReader->value<br>"; 
?>

输出:

GeeksforGeeks

程序2:在此程序中,遍历元素后将获得它的名称。

文档名称: data.xml

<?xml version="1.0" encoding="utf-8"?> 
<div1> 
    <h1> GeeksforGeeks </h1> 
</div1>

文档名称: index.php

<?php 
  
// Create a new XMLReader instance 
$XMLReader = new XMLReader(); 
  
// Open the XML file 
$XMLReader->open('data.xml'); 
  
// Iterate through the XML nodes 
// to reach the h1 element 
// (only three times) 
$XMLReader->read(); 
$XMLReader->read(); 
$XMLReader->read(); 
  
// Print name of element 
echo "The name of element is:"
     . "$XMLReader->name<br>"; 
?>

输出:

The name of element is:h1

参考: https://www.php.net/manual/en/xmlreader.read.php




相关用法


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