php8.5
Home/ Manual/ dom / parentnode/ Dom\ParentNode::querySelector

Dom\ParentNode::querySelector

PHP function Edit on GitHub ✎

(PHP 8 >= 8.4.0)

Returns the first element that matches the CSS selectors

Description

Dom\ParentNode::querySelector(string $selectors): Dom\Element|null

Returns the first element that matches the CSS selectors specified in selectors.

Parameters

selectors

A string containing one or more CSS selectors.

Return Values

Returns the first Dom\Element that matches selectors. Returns null if no element matches.

Errors/Exceptions

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

See Also

  • Dom\ParentNode::querySelectorAll

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