<?php
for($i=0;$i<10;$i++){
${"fn" . $i} = function() use ($i) { echo $i; };
}
for($i=0;$i<10;$i++){
${"fn" . $i}();
}
// 0123456789
なんか気持ち悪い