Skip to content

Instantly share code, notes, and snippets.

@capfsb
Created February 24, 2018 09:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save capfsb/013711a6c8864cfa854f34978add8ac9 to your computer and use it in GitHub Desktop.
Save capfsb/013711a6c8864cfa854f34978add8ac9 to your computer and use it in GitHub Desktop.
a.php
<?php
function someFunc($storage){
return (function($a) use (&$storage)
{
return $storage+=$a;
});
}
$a = someFunc(2);
echo $a(2); // 4
echo $a(5); // 9
echo $a(1); // 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment