Skip to content

Instantly share code, notes, and snippets.

@ritalin
Last active December 31, 2015 00:29
Show Gist options
  • Save ritalin/7907780 to your computer and use it in GitHub Desktop.
Save ritalin/7907780 to your computer and use it in GitHub Desktop.
// こうしてもいいんだけど・・・・
function outer() {
$n = 10;
my_func($n, function($i, $x) { return $x + $i }, [10, 20, 30]);
}
function my_func($i, closure $callback, array $a) {
foreach ($a as $x) {
echo $callback($i, $x);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment