![]() |
VOOZH | about |
The simplexml_import_dom() function is an inbuilt function in PHP which is used to take a node of DOM document and convert it into a SimpleXML node.
Syntax:
SimpleXMLElement simplexml_import_dom( $node, $class_name = "SimpleXMLElement" )
Parameters: This function accepts two parameters as mentioned above and described below:
Return Value: This function returns the SimpleXMLElement on success or FALSE on failure.
Below program illustrates the simplexml_import_dom() function in PHP:
Program:
object(SimpleXMLElement)#3 (1) {
[0]=>
string(21) "abc@geeksforgeeks.org"
}
object(SimpleXMLElement)#3 (1) {
[0]=>
string(13) "+91-987654321"
}Reference: https://www.php.net/manual/en/function.simplexml-import-dom.php