Skip to content

Instantly share code, notes, and snippets.

@BinaryKitten
Created March 14, 2013 16:33
Show Gist options
  • Select an option

  • Save BinaryKitten/5162857 to your computer and use it in GitHub Desktop.

Select an option

Save BinaryKitten/5162857 to your computer and use it in GitHub Desktop.
<?php
$a = 1;
$fn = function($toAdd) use ($a) {
return $a + $toAdd;
};
echo $fn(2);
$a = 4;
$fn = function($toAdd) use ($a) {
return $a + $toAdd;
}
echo $fn(2);
echo ($fn instanceOf Closure); // true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment