See also the properties from the inherited class DOMNode ( http://php.net/manual/en/class.domnode.php ), eg. namespaceURI, prefix, localName, etc, especially if you have to deal with namespaced attributes
DOMAttr クラス
(PHP 5)
導入
DOMNode を継承します。DOMAttr は、DOMElement オブジェクトの属性を表します。
クラス概要
DOMAttr
extends
DOMNode
{
/* プロパティ */
/* メソッド */
/* 継承したメソッド */
public string DOMNode::C14N
([ bool $exclusive
[, bool $with_comments
[, array $xpath
[, array $ns_prefixes
]]]] )
public int DOMNode::C14NFile
( string $uri
[, bool $exclusive
[, bool $with_comments
[, array $xpath
[, array $ns_prefixes
]]]] )
}プロパティ
- name
-
属性の名前
- ownerElement
-
属性を保持する要素
- schemaTypeInfo
-
未実装です。常に NULL を返します。
- specified
-
未実装です。常に NULL を返します。
- value
-
属性の値
目次
- DOMAttr::__construct — 新しい DOMAttr オブジェクトを作成する
- DOMAttr::isId — 属性が定義済みの ID かどうかを調べる
chregu at php dot net
23-Mar-2009 08:20
