PHP Velho Oeste 2024

DOMNode::getRootNode

(PHP 8 >= 8.3.0)

DOMNode::getRootNodeGet root node

Description

public DOMNode::getRootNode(array $options = null): DOMNode

Get root node.

Parameters

options

This parameter has no effect yet.

Return Values

Returns the root node.

Examples

Example #1 DOMNode::getRootNode() example

<?php

$dom
= new DOMDocument();
$dom->loadXML('<?xml version="1.0"?><html><body/></html>');

var_dump($dom->documentElement->firstElementChild->getRootNode() === $dom);
?>

The above example will output:

bool(true)
add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top