Forum PHP 2025

The Dom\DocumentType class

(PHP 8 >= 8.4.0)

はじめに

Each Dom\Document has a doctype attribute whose value is either null or a Dom\DocumentType object.

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

クラス概要

class Dom\DocumentType extends Dom\Node implements Dom\ChildNode {
/* 継承した定数 */
/* プロパティ */
public readonly string $name;
public readonly string $publicId;
public readonly string $systemId;
public readonly ?string $internalSubset;
/* 継承したプロパティ */
public readonly int $nodeType;
public readonly string $nodeName;
public readonly string $baseURI;
public readonly bool $isConnected;
public readonly ?Dom\Document $ownerDocument;
public readonly ?Dom\Node $parentNode;
public readonly ?Dom\Element $parentElement;
public readonly Dom\NodeList $childNodes;
public readonly ?Dom\Node $firstChild;
public readonly ?Dom\Node $lastChild;
public readonly ?Dom\Node $previousSibling;
public readonly ?Dom\Node $nextSibling;
/* メソッド */
/* Not documented yet */
/* 継承したメソッド */
/* Not documented yet */
}

プロパティ

publicId

外部サブセットの公開 ID。

systemId

外部サブセットのシステム ID。完全 URI である場合とそうでない場合がある。

name

DTD の名前。すなわち、DOCTYPE キーワードに続く値。

entities
A Dom\DtdNamedNodeMap containing the general entities, both external and internal, declared in the DTD.
notations
A Dom\DtdNamedNodeMap containing the notations declared in the DTD.
internalSubset

内部サブセットを文字列として取得する。存在しない場合は null となる。区切りの角括弧は含まない。

add a note

User Contributed Notes

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