edwinhuish / domquery
DomQuery is a PHP library that allows easy 'jQuery like' DOM traversing and manipulation
Installs: 127
Dependents: 1
Suggesters: 0
Security: 0
Stars: 7
Watchers: 0
Forks: 40
Open Issues: 0
pkg:composer/edwinhuish/domquery
Requires
- php: ^7.0.0
- ext-dom: *
- ext-json: *
- ext-libxml: *
- ext-xml: *
- edwinhuish/css-to-xpath: ^1.0
- tightenco/collect: ^5
Requires (Dev)
- phpstan/phpstan: ^0.8
- phpunit/php-code-coverage: ^5.3
- phpunit/phpunit: ^6.5
- squizlabs/php_codesniffer: ^3.1
- dev-master
- v1.1.3
- v1.1.2
- v1.1.1
- v1.1
- v1.0.14
- v1.0.13
- v1.0.12
- v1.0.11
- v1.0.10
- v1.0.9
- v1.0.8
- v1.0.7
- v1.0.6
- v1.0.5
- v1.0.4
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0
- v0.8
- v0.7.2
- v0.7.1
- v0.7
- v0.6.2
- v0.6.1
- v0.6
- v0.5.7.2
- v0.5.7.1
- v0.5.7
- v0.5.6
- v0.5.5
- v0.5.4
- v0.5.3
- v0.5.2
- v0.5.1
- v0.5.0
- v0.4.2
- v0.4.1
- v0.4.0
- v0.3.0
- v0.2.0
- v0.1.8
- v0.1.7
- v0.1.6
- v0.1.5
- v0.1.4
- v0.1.3
- v0.1.2
- v0.1.1
- v0.1.0
This package is auto-updated.
Last update: 2025-10-15 20:50:13 UTC
README
DomQuery is a PHP library that allows you to easily traverse and modify the DOM (HTML/XML). As a library it aims to provide 'jQuery like' access to the PHP DOMDocument class.
Installation
Install the latest version with
$ composer require edwinhuish/domquery
Basic Usage
Read attributes and properties:
$dom = new DomQuery('<div><h1 class="title">Hello</h1></div>'); echo $dom->find('h1')->text(); // output: Hello echo $dom->find('div')->prop('outerHTML'); // output: <div><h1 class="title">Hello</h1></div> echo $dom->find('div')->html(); // output: <h1 class="title">Hello</h1> echo $dom->find('div > h1')->class; // output: title echo $dom->find('div > h1')->attr('class'); // output: title echo $dom->find('div > h1')->prop('tagName'); // output: h1 echo $dom->find('div')->children('h1')->prop('tagName'); // output: h1 echo (string) $dom->find('div > h1'); // output: <h1 class="title">Hello</h1> echo count($dom->find('div, h1')); // output: 2
Traversing nodes (result set):
$dom = new DomQuery('<a>1</a> <a>2</a> <a>3</a>'); $links = $dom->children('a'); // foreach $texts = []; foreach($links as $key => $dq) { // $dq is DomQuery object $texts[] = $dq->text(); } print_r($texts); // array('1','2','3') // map $result = $links->map(function(DomQuery $dq, int $idx){ return $dq->text(); }); // map method return Collection object print_r($result->toArray()); // array('1','2','3') // each, same as Collection's each method, break traversing if return false. $links->each(function(DomQuery $dq, int $idx){ if($idx === 1){ return false; } $dq->text('changed'); }); print_r($links->texts()); // array('changed', '2', '3') echo $links->text(); // output 1, return text of first child, if you need the result of all childs please use texts() or foreach, each, map method echo $links[0]->text(); // output 1 echo $links->last()->text(); // output 3 echo $links->first()->next()->text(); // output 2 echo $links->last()->prev()->text(); // output 2 echo $links->get(0)->textContent; // output 1 echo $links->get(-1)->textContent; // output 3
Factory method (create instance alternative):
DomQuery::create('<a title="hello"></a>')->attr('title') // hello
Jquery methods available
Traversing > Tree Traversal
.find( selector ).children( [selector] ).parent( [selector] ).closest( [selector] ).next( [selector] ).prev( [selector] ).nextAll( [selector] ).prevAll( [selector] ).siblings( [selector] )
Traversing > Miscellaneous Traversing
.contents()get children including text nodes.add( selector, [context] )new result with added elements that match selector
Traversing > Filtering
.is( selector ).filter ( selector )reduce to those that match the selector.not( selector )remove elements from the set of matched elements.has( selector )reduce to those that have a descendant that matches the selector.first( [selector] ).last( [selector] ).slice( [offset] [, length])like array_slice in php, not js/jquery.eq( index ).map( callable(elm,i) )
* [selector] can be a css selector or an instance of DomQuery|DOMNodeList|DOMNode
Manipulation > DOM Insertion & removal
.text( [text] ).html( [html_string] ).append( [content],... ).prepend( [content],... ).after( [content],... ).before( [content],... ).appendTo( [target] ).prependTo( [target] ).replaceWith( [content] ).wrap( [content] ).wrapAll( [content] ).wrapInner( [content] ).remove( [selector] ).unwrap().first().last().gt( int $index ).lt( int $index )
* [content] can be html or an instance of DomQuery|DOMNodeList|DOMNode
Attributes | Manipulation
.attr( name [, val] ).prop( name [, val] ).css( name [, val] ).removeAttr( name ).addClass( name ).hasClass( name ).toggleClass ( name ).removeClass( [name] )
* addClass, removeClass, toggleClass and removeAttr also accepts an array or space-separated names
Miscellaneous > DOM Element Methods | Traversing | Storage
.get( index ).each ( callable(elm,i) ).data ( key [, val] ).removeData ( [name] ).index ( [selector] ).toArray().clone()
Supported selectors
.class#fooparent > childfoo, barmultiple selectorsprev + nextelements matching "next" that are immediately preceded by a sibling "prev"prev ~ siblingselements matching "siblings" that are preceded by "prev"*all selector[name="foo"]attribute value equal foo[name*="foo"]attribute value contains foo[name~="foo"]attribute value contains word foo[name^="foo"]attribute value starts with foo[name$="foo"]attribute value ends with foo[name|="foo"]attribute value equal to foo, or starting foo followed by a hyphen (-)
Pseudo selectors
:empty:even:odd:first-child:last-child:only-child:parentelements that have at least one child node:first:last:headerselects h1, h2, h3 etc.:not(foo)elements that do not match selector foo:has(foo)elements containing at least one element that matches foo selector:contains(foo)elements that contain text foo:rootelement that is the root of the document:nth-child(n):nth-child(even):nth-child(odd):nth-child(3n+8):nth-child(2n+1):nth-child(n+4)same as:gt(2):nth-child(-n+4)same as:lt(4):nth-child(3):nth-child(-2):nth-child(4n):eq(0):eq(-1):lt(3):gt(2)
Other (non jQuery) methods
findOrFail( selector )find descendants of each element in the current set of matched elements, or throw an exceptionloadContent(content, encoding='UTF-8')load html/xml contentxpath(xpath_query)Use xpath to find descendants of each element in the current set of matched elementsgetOuterHtml()get resulting html describing all the elements (same as(string) $dom, or$elm->prop('outerHTML'))getRoot()get the root node
XML support
- XML content will automatically be loaded 'as XML' if a XML declaration is found (property
xml_modewill be set to true) - This in turn will also make saving (rendering) happen 'as XML'. You can set property
xml_modeto false to prevent this. - To prevent content with a XML declaration loading 'as XML' you can set property
xml_modeto false and then use theloadContent($content)method. - Namespaces are automatically registered (no need to do it manually)
Escaping meta chars in selector to find elements with namespace:
$dom->find('namespace\\:h1')->text();
About
Requirements
- Works with PHP 7.0 or above
- Requires libxml PHP extension (enabled by default)