Eu estava brincando com funções anônimas em PHP e percebi que elas não parecem atingir variáveis fora delas. Existe alguma maneira de contornar esse problema?
Exemplo:
$variable = "nothing";
functionName($someArgument, function() {
$variable = "something";
});
echo $variable; //output: "nothing"
Isso produzirá "nada". Existe alguma maneira de a função anônima acessar o $variable
?