Skip to content

Instantly share code, notes, and snippets.

@indare
Created May 15, 2012 06:06
Show Gist options
  • Save indare/2699484 to your computer and use it in GitHub Desktop.
Save indare/2699484 to your computer and use it in GitHub Desktop.
Closure<php>
<?php
function newCounter(){
$i = 0;
return function() use ($i){
return ++$i;
};
}
//$c = newCounter();
$i = 0;
$c = function() use($i){
return ++$i;
};
echo $c() . "<br />";
echo $c() . "<br />";
echo $c() . "<br />";
echo $c() . "<br />";
echo $c() . "<br />";
echo $c() . "<br />";
echo $c() . "<br />";
echo $c() . "<br />";
echo $c() . "<br />";
echo $c() . "<br />";
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment