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


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


XMLReader::moveToAttribute()函数是PHP中的内置函数,用于将光标移动到命名属性。

用法:

bool XMLReader::moveToAttribute( string $name )

参数:该函数接受单个参数$name,该参数保存属性的名称。



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

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

程序1:
文档名称: data.xml

<?xml version="1.0" encoding="utf-8"?> 
<div> 
    <h1> GeeksforGeeks </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 attribute of name "class" 
        $XMLReader->moveToAttribute("class"); 
  
        // Output the value to browser 
        echo $XMLReader->value; 
    } 
} 
?>

输出:

// Empty string because there is no attribute with given name.

程序2:
文档名称: data.xml

<?xml version="1.0" encoding="utf-8"?> 
<div> 
    <h1 attrib="value"> My 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 attribute of name "attrib" 
        $XMLReader->moveToAttribute("attrib"); 
  
        // Output the value to browser 
        echo $XMLReader->value; 
    } 
} 
?>

输出:

value

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




相关用法


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