ConFoo 2025

Dom\ParentNode::querySelectorAll

(PHP 8 >= 8.4.0)

Dom\ParentNode::querySelectorAllReturns a collection of elements that match the CSS selectors

Опис

public Dom\ParentNode::querySelectorAll(string $selectors): Dom\NodeList

Returns a collection of elements that match the CSS selectors specified in selectors.

Параметри

selectors
A string containing one or more CSS selectors.

Значення, що повертаються

Returns a static collection of elements that match the CSS selectors specified in selectors.

Помилки/виключення

Throws a DOMException with code Dom\SYNTAX_ERR when selectors is not a valid CSS selector string.

Прогляньте також

add a note

User Contributed Notes

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