Walk through all the nodes on a node list.
\DOMNodeList $nl A list of child elements to walk through.:
public function children($nl) { foreach ($nl as $node) { $this->node($node); } }