The DOMDocumentType class
(PHP 5, PHP 7, PHP 8)
简介
Each DOMDocument has a doctype
attribute whose value is either null or a DOMDocumentType object.
类摘要
/* 继承的常量 */
/* 属性 */
/* 继承的属性 */
/* 继承的方法 */
public DOMNode::C14N(
bool
bool
?array
?array
): string|false
}bool
$exclusive = false,bool
$withComments = false,?array
$xpath = null,?array
$nsPrefixes = null): string|false
属性
- publicId
-
The public identifier of the external subset.
- systemId
-
The system identifier of the external subset. This may be an absolute URI or not.
- name
-
The name of DTD; i.e., the name immediately following the
DOCTYPEkeyword. - entities
-
A DOMNamedNodeMap containing the general entities, both external and internal, declared in the DTD.
- notations
-
A DOMNamedNodeMap containing the notations declared in the DTD.
- internalSubset
-
The internal subset as a string, or
nullif there is none. This does not contain the delimiting square brackets.