Created
January 17, 2013 06:00
-
-
Save maeharin/4554026 to your computer and use it in GitHub Desktop.
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 foo() { | |
$args = func_get_args(); //可変長引数を配列で取得 | |
$v = array_shift($args); | |
$callable = array_pop($args); | |
$callable($v); //コールバック関数を呼び出し | |
} | |
foo('aaa', 'bbb', function($v) { | |
echo $v; //aaa | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment