PHP | XMLReader lookupNamespace() Function

The XMLReader::lookupNamespace() function is an inbuilt function in PHP which is used to lookup in scope namespace for a given prefix.
Syntax:
string XMLReader::lookupNamespace( string $prefix )
Parameters: This function accepts a single parameter $prefix which holds the string containing the prefix.
Return Value: This function returns TRUE on success or FALSE on failure.
Below given programs illustrate the XMLReader::lookupNamespace() function in PHP:
Program 1:
Filename: data.xml
| <?xmlversion="1.0"encoding="utf-8"?> <divxmlns:z="my_namespace">     <z:h1z:attrib="value"> Foo Bar </z:h1> </div>  | 
Filename: index.php
| <?php  // Create a new XMLReader instance $XMLReader= newXMLReader();  // Open the XML file $XMLReader->open('data.xml');  // Read the node $XMLReader->read();  // Get the namespace with prefix y $NS= $XMLReader->lookupNamespace("y");  // Show the namespace to browser echo$NS; ?>  | 
Output:
// Empty string because there is no namespace with prefix y.
Program 2:
Filename: data.xml
| <?xmlversion="1.0"encoding="utf-8"?> <divxmlns:x="zambiatek">     <x:h1x:attrib="value"> Namespaced Text </x:h1> </div>  | 
Filename: index.php
| <?php  // Create a new XMLReader instance $XMLReader= newXMLReader();  // Open the XML file $XMLReader->open('data.xml');  // Read the node $XMLReader->read();  // Get the namespace with prefix x $NS= $XMLReader->lookupNamespace("x");  // Show the namespace to browser echo$NS; ?>  | 
Output:
zambiatek
Reference: https://www.php.net/manual/en/xmlreader.lookupnamespace.php
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, zambiatek 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!
 
				 
					


