Skip to content

Instantly share code, notes, and snippets.

@JPry
Created July 9, 2015 19:05
Show Gist options
  • Save JPry/bdc03ca0d40df93bfb1a to your computer and use it in GitHub Desktop.
Save JPry/bdc03ca0d40df93bfb1a to your computer and use it in GitHub Desktop.
<?php
$some_var = 'something';
$func = function() use ( $some_var ) {
echo $some_var; // echos "something"
};
$func();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment