ConFoo 2025

Dom\ParentNode::querySelector

(PHP 8 >= 8.4.0)

Dom\ParentNode::querySelectorReturns the first element that matches the CSS selectors

Descrição

public Dom\ParentNode::querySelector(string $selectors): ?Dom\Element

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

Parâmetros

selectors
A string containing one or more CSS selectors.

Valor Retornado

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

Erros/Exceções

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

Veja Também

adicione uma nota

Notas Enviadas por Usuários (em inglês)

Não há notas de usuários para esta página.
To Top