Open In App

PHP | XMLReader readOuterXml() Function

The XMLReader::readOuterXml() function is an inbuilt function in PHP which is used to read the contents of the current node, including the node itself.

Syntax:



string XMLReader::readOuterXml( void )

Parameters: This function doesn’t accept any parameter.

Return Value: This function returns the contents of current node, including itself, as a string or empty string on failure.



Below examples illustrate the XMLReader::readOuterXml() function in PHP:

Example 1: In this program, we will read the value of an element without sub-nodes.

Example 2: In this program, we will read the value of an element with sub-nodes.

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


Article Tags :