downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

DOMAttr::__construct> <Constantes predefinidas
Last updated: Fri, 20 May 2011

view this page in

La clase DOMAttr

Introducción

DOMAttr representa un atributo en el objeto DOMElement.

Clases sinopsis

DOMAttr extends DOMNode {
/* Propiedades */
public readonly string $name ;
public readonly DOMElement $ownerElement ;
public readonly bool $schemaTypeInfo ;
public readonly bool $specified ;
public string $value ;
/* Métodos */
__construct ( string $name [, string $value ] )
bool isId ( void )
/* Métodos heredados */
DOMNode DOMNode::appendChild ( DOMNode $newnode )
DOMNode DOMNode::cloneNode ([ bool $deep ] )
public int DOMNode::getLineNo ( void )
bool DOMNode::hasAttributes ( void )
bool DOMNode::hasChildNodes ( void )
DOMNode DOMNode::insertBefore ( DOMNode $newnode [, DOMNode $refnode ] )
bool DOMNode::isDefaultNamespace ( string $namespaceURI )
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 )
}

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.

Table of Contents



add a note add a note User Contributed Notes DOMAttr
chregu at php dot net 23-Mar-2009 07:20
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

 
show source | credits | stats | sitemap | contact | advertising | mirror sites