Skip to content

Instantly share code, notes, and snippets.

@mk-pmb
Created November 19, 2017 01:26
Show Gist options
  • Save mk-pmb/7ecc18f81c08abebe78a573b416b0e0e to your computer and use it in GitHub Desktop.
Save mk-pmb/7ecc18f81c08abebe78a573b416b0e0e to your computer and use it in GitHub Desktop.
<?php
$f = function ($a) {
return function ($b) use ($a) { return $a + $b; };
};
$g = $f(2);
$x = $g(3);
var_dump($x); # 5
# $y = $f(2)(3); # syntax error, unexpected '('
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment