Created
January 29, 2012 10:49
-
-
Save nikuuchi/1698252 to your computer and use it in GitHub Desktop.
PHP5.3以降ならクロージャが使えると聞いて。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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