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


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


XMLReader::moveToAttributeNo()函数是PHP中的内置函数,用于按索引将光标移动到属性。当节点具有多个属性但我们仅需要特定属性时,此函数很有用。

用法:

bool XMLReader::moveToAttributeNo( int $index )

参数:该函数接受单个参数$index,该参数保存属性的位置。



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

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

程序1:在此程序中,我们将获取特定节点的第二个属性的值。

文档名称: data.xml

<?xml version="1.0" encoding="utf-8"?> 
<div> 
    <h1 att1="first" attr2="second"> Text </h1> 
</div>

文档名称: 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 node 
$XMLReader->read(); 
$XMLReader->read(); 
$XMLReader->read(); 
  
// Move to second attribute 
// of current node 
$XMLReader->moveToAttributeNo(1); 
  
// Output the value to browser 
echo $XMLReader->value; 
?>

输出:

second

程序2:在此程序中,我们将获取所有节点的第一个属性的值。

文档名称: data.xml

<?xml version="1.0" encoding="utf-8"?> 
<div> 
    <h1 attribute="geeksforgeeks"> Text </h1> 
</div>

文档名称: index.php

<?php 
  
// Create a new XMLReader instance 
$XMLReader = new XMLReader(); 
  
// Open the XML file 
$XMLReader->open('data.xml'); 
  
// Iterate through the XML nodes 
while ($XMLReader->read()) { 
    if ($XMLReader->nodeType == XMLREADER::ELEMENT) { 
  
        // Move to first attribute 
        $XMLReader->moveToAttributeNo(0); 
  
        // Output the value to browser 
        echo $XMLReader->value; 
    } 
} 
?>

输出:

geeksforgeeks

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




相关用法


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