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
La clase DOMAttr
(PHP 5)
Introducción
DOMAttr representa un atributo en el objeto DOMElement.
Sinopsis de la Clase
DOMAttr
extends
DOMNode
{
/* Propiedades */
/* Métodos */
/* Métodos heredados */
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
]]]] )Propiedades
- name
-
El nombre del atributo.
- ownerElement
-
El elemento que contiene el atributo.
- schemaTypeInfo
-
Aún no implementado, siempre es
NULL - specified
-
Aún no implementado, siempre es
NULL - value
-
El valor del atributo.
Tabla de contenidos
- DOMAttr::__construct — Crea un nuevo objeto DOMAttr
- DOMAttr::isId — Verifica si un atributo es un ID definido.
chregu at php dot net
23-Mar-2009 11:20
