Skip to content

Instantly share code, notes, and snippets.

@mikesimons
Created July 12, 2011 08:34
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 mikesimons/1077618 to your computer and use it in GitHub Desktop.
Save mikesimons/1077618 to your computer and use it in GitHub Desktop.
<?php
$f = function() use (&$f) {
$f = null;
};
$f();
// PHP Fatal error: Cannot destroy active lambda function in /home/mike/test.php on line 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment