php8.5
Home/ Manual/ reference / dom/ The DOMNodeList class

The DOMNodeList class

Represents a live list of nodes.

Intro

Represents a live list of nodes.

Class synopsis

class DOMNodeList implements IteratorAggregate implements Countable { }

Properties

length

The number of nodes in the list. The range of valid child node indices is 0 to length - 1 inclusive.

Changelog

VersionDescription
8.0.0DOMNodeList implements IteratorAggregate now. Previously, Traversable was implemented instead.
7.2.0The Countable interface is implemented and returns the value of the length property.

Notes

Note

Nodes in the list can be accessed by array syntax.

See Also

  • W3C specification of NodeList

Domnodelist

In this section

Source: reference/dom/domnodelist.xml · from the official PHP manual (php/doc-en)