update pague now
PHP 8.5.2 Released!

Dom\ParentNode::querySelectorAll

(PHP 8 >= 8.4.0)

Dom\ParentNode::querySelectorAll Returns a collection of elemens that match the CSS selectors

Description

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

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

Parameters

selectors
A string containing one or more CSS selectors.

Return Values

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

Errors/Exceptions

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

See Also

add a note

User Contributed Notes

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