The XMLReader::next() function is an inbuilt function in PHP which is used to move cursor to next node skipping all subtrees. Another usage of this function is it accepts the name of the node to directly move to the element.
Syntax:
bool XMLReader::next( string $localname )
Parameters: This function accepts a single parameter $localname which holds the name of the next node where to move.
Return Value: This function returns TRUE on success or FALSE on failure.
Below programs illustrate the XMLReader::next() function in PHP:
Program 1: In this program, we will walk through the XML tree.
Filename: data.xml
html
<? xml version="1.0" encoding="utf-8"?>
< div1 >
< h1 > Foo Bar </ h1 >
< div2 >
< h1 > Foo Bar </ h1 >
</ div2 >
</ div1 >
|
Filename: index.php
php
<?php
$XMLReader = new XMLReader();
$XMLReader ->open( 'data.xml' );
$XMLReader ->read();
$XMLReader ->read();
$XMLReader ->next();
echo "Before:<br> We are currently"
. " at: $XMLReader ->name<br>";
$XMLReader ->next();
$XMLReader ->next();
echo "After:<br> We are currently"
. " at: $XMLReader ->name";
?>
|
Output:
Before:
We are currently at: h1
After:
We are currently at: div2
Program 2: In this program, we will move to a specific node in the XML tree.
Filename:data.xml
html
<? xml version="1.0" encoding="utf-8"?>
< div1 >
< h1 > Foo Bar </ h1 >
< div2 >
< h1 > Foo Bar </ h1 >
</ div2 >
< div3 > Hello </ div3 >
</ div1 >
|
Filename: index.php
php
<?php
$XMLReader = new XMLReader();
$XMLReader ->open( 'data.xml' );
$XMLReader ->read();
$XMLReader ->read();
$XMLReader ->next("div2");
echo "Before:<br> We are currently"
. "at: $XMLReader ->name<br>";
$XMLReader ->next();
$XMLReader ->next();
echo "After:<br> We are currently"
. " at: $XMLReader ->name";
?>
|
Output:
Before:
We are currently at: div2
After:
We are currently at: div3
Reference: https://www.php.net/manual/en/xmlreader.next.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!