Introduction
PHP Manual
PHP Manual»DOM»Dom\ChildNode

The Dom\ChildNode interface

(PHP 8 >= 8.4.0)

This is the modern, spec-compliant equivalent of DOMChildNode.

interface Dom\ChildNode {
/* Methods */
public function after(Dom\Node|string ...$nodes): void
public function before(Dom\Node|string ...$nodes): void
public function remove(): void
public function replaceWith(Dom\Node|string ...$nodes): void
}

Table of Contents

To Top