Open In App

PHP | XMLReader getAttributeNo() Function

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:

Example 2:

Reference: https://www.php.net/manual/en/xmlreader.getattributeno.php


Article Tags :