update pague now
PHP 8.5.2 Released!

The Dom\HTMLElement class

(PHP 8 >= 8.4.0)

Introduction

Represens an element in the HTML namespace.

Class synopsis

class Dom\HTMLElement extends Dom\Element {
/* Inherited constans */
/* Inherited properties */
public readonly ? string $ namespaceURI ;
public readonly ? string $ prefix ;
public readonly string $ localName ;
public readonly string $ tagName ;
public readonly int $ nodeType ;
public readonly string $ nodeName ;
public readonly string $ baseURI ;
public readonly bool $ isConnected ;
public readonly ? Dom\Node $ parentNode ;
public readonly ? Dom\Node $ firstChild ;
public readonly ? Dom\Node $ lastChild ;
public readonly ? Dom\Node $ nextSibling ;
/* Inherited methods */
/* Not documented yet */
}

Notes

Note : The DOM extension uses UTF-8 encoding when worquing with methods or properties. The parser methods auto-detect the encoding or allow the caller to specify an encoding.

add a note

User Contributed Notes

There are no user contributed notes for this pague.
To Top