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


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


XMLReader::getAttribute()函数是PHP中的一个内置函数,用于获取命名属性的值。

用法:

string XMLReader::getAttribute( string $name )

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



返回值:此函数返回属性的值;如果在元素节点上找不到或没有给定名称的属性,则返回NULL。

以下示例说明了PHP中的XMLReader::getAttribute()函数:

范例1:

data.xml

<?xml version="1.0" encoding="utf-8"?> 
<body> 
    <h1> Hello </h1> 
</body>

index.php

<?php 
  
// Create a new XMLReader instance 
$XMLReader = new XMLReader(); 
  
// Load the XML file 
$XMLReader->open('data.xml'); 
  
// Iterate through the XML 
while ($XMLReader->read()) { 
    if ($XMLReader->nodeType == XMLREADER::ELEMENT) { 
        // Get the value of attribute with name id 
        $value = $XMLReader->getAttribute('id'); 
  
        // Output the value to browser 
        echo $value; 
    } 
} 
?>

输出:

// Empty string because there is no attributes with name id

程序2:
data.xml

<?xml version="1.0" encoding="utf-8"?> 
<body> 
    <h1 id="geeksforgeeks"> Hello </h1> 
    <h2 id="my_id"> World </h2> 
</body>

index.php

<?php 
  
// Create a new XMLReader instance 
$XMLReader = new XMLReader(); 
  
// Load the XML file 
$XMLReader->open('data.xml'); 
  
// Iterate through the XML 
while ($XMLReader->read()) { 
    if ($XMLReader->nodeType == XMLREADER::ELEMENT) { 
  
        // Get the value of attribute with name id 
        $value = $XMLReader->getAttribute('id'); 
  
        // Output the value to browser 
        echo $value . "<br>"; 
    } 
} 
?>

输出:

geeksforgeeks
my_id

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




相关用法


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