Skip to content

Instantly share code, notes, and snippets.

@MisterRager
Created March 18, 2016 06:28
Show Gist options
  • Save MisterRager/81aef83255375cce46d4 to your computer and use it in GitHub Desktop.
Save MisterRager/81aef83255375cce46d4 to your computer and use it in GitHub Desktop.
function partial_apply(){
$args = func_get_args();
$funk = array_shift($args);
return function() use ($args, $func){
$func_args = func_get_args();
call_user_func_array($funk, $args + func_args);
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment