Skip to content

Instantly share code, notes, and snippets.

@matej21
Last active February 1, 2017 13:46
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 matej21/f3c8ea02e79f59916edb612974d9600a to your computer and use it in GitHub Desktop.
Save matej21/f3c8ea02e79f59916edb612974d9600a to your computer and use it in GitHub Desktop.
<?php
$a = 1;
var_dump($a); //prints 2
<?php
$a = new class {
function __destruct()
{
$GLOBALS['a'] = 2;
}
};
require 'a.php';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment