I couldn't find the section in the PHP manual that explains use
I have the code
$num = 0;
array_walk_recursive($_REQUEST, function($mValue) use (&$num){
$num++;
});
and my Eclipse complains:
Parser error "'{' expected in compound-statement.
So I guess this was implemented in some PHP version.