Crawler::each()

array each(Closure $closure)

Calls an anonymous function on each node of the list.

The anonymous function receives the position and the node wrapped in a Crawler instance as arguments.

Example:

$crawler->filter('h1')->each(function ($node, $i) {
    return $node->text();
});

Parameters

Closure $closure An anonymous function

Return Value

array An array of values returned by the anonymous function
doc_Symfony
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.