<?php
$a = 1;
$x = function ($n) use ($a) {
echo "a=$a, n=$n\n";
};

$x(10); // a=1,n=10
$a = 2;
$x(5); // a=1, n=5