The XMLReader::getAttribute() function is an inbuilt function in PHP which is used to get the value of a named attribute.
Syntax:
string XMLReader::getAttribute( string $name )
Parameters: This function accepts a single parameter $name which holds the name of the attribute.
Return Value: This function returns the value of the attribute, or NULL if no attribute with the given name is found or not positioned on an element node.
Below examples illustrate the XMLReader::getAttribute() function in PHP:
Example 1:
data.xml
<? xml version = "1.0" encoding = "utf-8" ?>
< body >
< h1 > Hello </ h1 >
</ body >
|
index.php
<?php
$XMLReader = new XMLReader();
$XMLReader ->open( 'data.xml' );
while ( $XMLReader ->read()) {
if ( $XMLReader ->nodeType == XMLREADER::ELEMENT) {
$value = $XMLReader ->getAttribute( 'id' );
echo $value ;
}
}
?>
|
Output:
// Empty string because there is no attributes with name id
Program 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
$XMLReader = new XMLReader();
$XMLReader ->open( 'data.xml' );
while ( $XMLReader ->read()) {
if ( $XMLReader ->nodeType == XMLREADER::ELEMENT) {
$value = $XMLReader ->getAttribute( 'id' );
echo $value . "<br>" ;
}
}
?>
|
Output:
geeksforgeeks
my_id
Reference: https://www.php.net/manual/en/xmlreader.getattribute.php
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
20 Mar, 2020
Like Article
Save Article