The XMLReader::getAttributeNo() function is an inbuilt function in PHP which is used to get the value of an attribute based on its position or an empty string if attribute does not exist or not positioned on an element node.
Syntax:
string XMLReader::getAttributeNo( int $index )
Parameters: This function accepts a single parameter $index which holds the index of the attribute value to fetch.
Return Value: This function returns value of the attribute on success or an empty string.
Below examples illustrate the XMLReader::getAttributeNo() function in PHP:
Example 1:
- data.xml
<?xmlversion="1.0"encoding="utf-8"?><body>Â Â Â Â<h1> Hello </h1></body> - index.php
<?phpÂÂ// Create a new XMLReader instance$XMLReader=newXMLReader();ÂÂ// Load the XML file$XMLReader->open('data.xml');ÂÂ// Iterate through the XMLwhile($XMLReader->read()) {   Âif($XMLReader->nodeType == XMLREADER::ELEMENT) {       Â// Get the value of first attribute       Â$value=$XMLReader->getAttributeNo(0);       Â// Output the value to browser       Âecho$value."<br>";   Â}}?> - Output:
// Empty string because no attributes are there in XML
Example 2:
- data.xml
<?xmlversion="1.0"encoding="utf-8"?><body>Â Â Â Â<h1id="neveropen"> Hello </h1>Â Â Â Â<h2id="my_id"> World </h2></body> - index.php
<?phpÂÂ// Create a new XMLReader instance$XMLReader=newXMLReader();ÂÂ// Load the XML file$XMLReader->open('data.xml');ÂÂ// Iterate through the XMLwhile($XMLReader->read()) {   Âif($XMLReader->nodeType == XMLREADER::ELEMENT) {       Â// Get the value of first attribute       Â$value=$XMLReader->getAttributeNo(0);       Â// Output the value to browser       Âecho$value."<br>";   Â}}?> - Output:
neveropen my_id
Reference: https://www.php.net/manual/en/xmlreader.getattributeno.php
