php-html-parser icon indicating copy to clipboard operation
php-html-parser copied to clipboard

Query class and attribute selector

Open enchikiben opened this issue 4 years ago • 1 comments

Good evening, is it possible to search for class + attribute? Example: .className[data-point]

enchikiben avatar Feb 14 '21 16:02 enchikiben

same question, but to search value of <meta name="description" content="text"> How to find text of this meta tag?

Resolved:

$metas = $dom->find("meta[name='description']"); echo $metas->getAttribute('content');

lustmordtheblackpost avatar Feb 15 '21 10:02 lustmordtheblackpost