Skip to content

Instantly share code, notes, and snippets.

@gorkamu
Created December 4, 2016 17:31
Show Gist options
  • Save gorkamu/1202dca9dae5dde8d5ba0fec560bca22 to your computer and use it in GitHub Desktop.
Save gorkamu/1202dca9dae5dde8d5ba0fec560bca22 to your computer and use it in GitHub Desktop.
Ejemplo de función anónima estática en una clase
<?php
new class {
function __construct()
{
(static function() {
var_dump($this);
})();
}
};
// Notice: Undefined variable: this in %s on line %d
// NULL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment