DOMDocumentType
DOMElement::__construct
DOM
PHP Manual
DOMElement クラス
クラス概要
DOMElement
DOMElement
extends
DOMNode
{
/* プロパティ */
readonly
public
bool
$schemaTypeInfo
;
readonly
public
string
$tagName
;
/* メソッド */
__construct
(
string
$name
[,
string
$value
[,
string
$namespaceURI
]] )
string
DOMElement::getAttribute
(
string
$name
)
DOMAttr
DOMElement::getAttributeNode
(
string
$name
)
DOMAttr
DOMElement::getAttributeNodeNS
(
string
$namespaceURI
,
string
$localName
)
string
DOMElement::getAttributeNS
(
string
$namespaceURI
,
string
$localName
)
DOMNodeList
DOMElement::getElementsByTagName
(
string
$name
)
DOMNodeList
DOMElement::getElementsByTagNameNS
(
string
$namespaceURI
,
string
$localName
)
bool
DOMElement::hasAttribute
(
string
$name
)
bool
DOMElement::hasAttributeNS
(
string
$namespaceURI
,
string
$localName
)
bool
DOMElement::removeAttribute
(
string
$name
)
bool
DOMElement::removeAttributeNode
(
DOMAttr
$oldnode
)
bool
DOMElement::removeAttributeNS
(
string
$namespaceURI
,
string
$localName
)
DOMAttr
DOMElement::setAttribute
(
string
$name
,
string
$value
)
DOMAttr
DOMElement::setAttributeNode
(
DOMAttr
$attr
)
DOMAttr
DOMElement::setAttributeNodeNS
(
DOMAttr
$attr
)
void
DOMElement::setAttributeNS
(
string
$namespaceURI
,
string
$qualifiedName
,
string
$value
)
void
DOMElement::setIdAttribute
(
string
$name
,
bool
$isId
)
void
DOMElement::setIdAttributeNode
(
DOMAttr
$attr
,
bool
$isId
)
void
DOMElement::setIdAttributeNS
(
string
$namespaceURI
,
string
$localName
,
bool
$isId
)
/* 継承されたメソッド */
DOMNode
DOMNode::appendChild
(
DOMNode
$newnode
)
DOMNode
DOMNode::cloneNode
([
bool
$deep
] )
bool
DOMNode::hasAttributes
(
void
)
bool
DOMNode::hasChildNodes
(
void
)
DOMNode
DOMNode::insertBefore
(
DOMNode
$newnode
[,
DOMNode
$refnode
] )
bool
DOMNode::isDefaultNamespace
(
string
$namespaceURI
)
bool
DOMNode::isSameNode
(
DOMNode
$node
)
bool
DOMNode::isSupported
(
string
$feature
,
string
$version
)
string
DOMNode::lookupNamespaceURI
(
string
$prefix
)
string
DOMNode::lookupPrefix
(
string
$namespaceURI
)
void
DOMNode::normalize
(
void
)
DOMNode
DOMNode::removeChild
(
DOMNode
$oldnode
)
DOMNode
DOMNode::replaceChild
(
DOMNode
$newnode
,
DOMNode
$oldnode
)
}
プロパティ
schemaTypeInfo
未実装。常に
NULL
を返す。
tagName
要素名
目次
DOMElement::__construct
— 新しい DOMElement オブジェクトを作成する
DOMElement::getAttribute
— 属性の値を返す
DOMElement::getAttributeNode
— 属性ノードを返す
DOMElement::getAttributeNodeNS
— 属性ノードを返す
DOMElement::getAttributeNS
— 属性の値を返す
DOMElement::getElementsByTagName
— タグ名から要素を取得する
DOMElement::getElementsByTagNameNS
— 名前空間 URI とローカル名から要素を取得する
DOMElement::hasAttribute
— 属性が存在するかどうかを調べる
DOMElement::hasAttributeNS
— 属性が存在するかどうかを調べる
DOMElement::removeAttribute
— 属性を削除する
DOMElement::removeAttributeNode
— 属性を削除する
DOMElement::removeAttributeNS
— 属性を削除する
DOMElement::setAttribute
— 新しい属性を追加する
DOMElement::setAttributeNode
— 新しい属性ノードを要素に追加する
DOMElement::setAttributeNodeNS
— 新しい属性ノードを要素に追加する
DOMElement::setAttributeNS
— 新しい属性を追加する
DOMElement::setIdAttribute
— ID 型の属性を名前で宣言する
DOMElement::setIdAttributeNode
— ID 型の属性をノードで宣言する
DOMElement::setIdAttributeNS
— ID 型の属性をローカル名および名前空間 URI で宣言する
DOMDocumentType
DOMElement::__construct
DOM
PHP Manual