Skip to content

Instantly share code, notes, and snippets.

@cloudsben
Created November 7, 2012 02:23
Show Gist options
  • Save cloudsben/4029233 to your computer and use it in GitHub Desktop.
Save cloudsben/4029233 to your computer and use it in GitHub Desktop.
PHP闭包
function compose() {
$funcs = func_get_args();
return function ($x) use ($funcs) {
foreach($funcs as $func)
$x = $func($x);
return $x;
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment