ThomasWeinert/FluentDOM

Add Element::find()

Closed this issue · 0 comments

Evaluates the expression expecting a node list, but returns a FluentDOM\Query instance.

Usage:

$dom = new FluentDOM\Document();
$dom->loadXml($xml);

foreach ($dom->find('//atom:entry') as $entry) {
  echo $entry->find('atom:title')->text();
}

This allows an alternative access to the fluent api.