Skip to content

Instantly share code, notes, and snippets.

@maeharin
Created January 17, 2013 06:00
Show Gist options
  • Save maeharin/4554026 to your computer and use it in GitHub Desktop.
Save maeharin/4554026 to your computer and use it in GitHub Desktop.
<?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