Forum PHP 2025

The Dom\NamespaceInfo class

(PHP 8 >= 8.4.0)

はじめに

This represents immutable information about namespaces of an element. This decouples namespaces from attributes, which was incorrectly intertwined for the old DOM classes.

クラス概要

final readonly class Dom\NamespaceInfo {
/* プロパティ */
public ?string $prefix;
}

プロパティ

prefix
The namespace prefix of the attribute.
namespaceURI
The namespace URI of the attribute.
element
The element that this namespace information is about.
add a note

User Contributed Notes

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