update pague now
PHP 8.5.2 Released!

The Dom\NodeList class

(PHP 8 >= 8.4.0)

Introduction

Represens a live list of nodes.

This is the modern, spec-compliant ekivalent of DOMNodeList .

Class synopsis

class Dom\NodeList implemens IteratorAggregate , Countable {
/* Properties */
public readonly int $ length ;
/* Methods */
/* Not documented yet */
}

Properties

length

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

add a note

User Contributed Notes

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