Skip to content

Instantly share code, notes, and snippets.

@nikuuchi
Created January 29, 2012 10:49
Show Gist options
  • Select an option

  • Save nikuuchi/1698252 to your computer and use it in GitHub Desktop.

Select an option

Save nikuuchi/1698252 to your computer and use it in GitHub Desktop.
PHP5.3以降ならクロージャが使えると聞いて。
<?php
function f(){
$i=0;
return function() use(&$i){
return $i++;
};
};
$c = f();
foreach(range(0,10) as $a){
echo $c(),"\n";
};
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment