ivopetkov / html5-dom-document-php

A better HTML5 parser for PHP.
MIT License
595 stars 39 forks source link

Using xpath may improve querySelector performance #39

Open poef opened 3 years ago

poef commented 3 years ago

DomDocument has support for spatch selectors, which support most of the CSS selectors. By offloading the search to the builtin function, you should be able to get improve performance quite a bit here.

Take a look at an implementation here: https://github.com/Ariadne-CMS/arc-xml/blob/master/src/xml.php#L53

ivopetkov commented 3 years ago

Sounds really good! Thank you!