I use DomCrawler in Symfony.
$variable = 'value';
$crawler->filter('table > tr')->each(
function ($node, $i) {
// $variable;
}
);
I try to access the variable inside the function but I get the error: Undefined variable.
How can I call this variable inside the function?