PHP 8.5.0 Beta 3 available for testing

Dom\ParentNode インターフェイス

(PHP 8 >= 8.4.0)

はじめに

このクラスは、DOMParentNode と同等ですが、 モダンかつ仕様に準拠しています。

インターフェイス概要

interface Dom\ParentNode {
/* メソッド */
public append(Dom\Node|string ...$nodes): void
public prepend(Dom\Node|string ...$nodes): void
public querySelector(string $selectors): ?Dom\Element
public replaceChildren(Dom\Node|string ...$nodes): void
}

目次

add a note

User Contributed Notes

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