Skip to content

Instantly share code, notes, and snippets.

@smilesrg
Created March 19, 2015 16:50
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 smilesrg/35747174a91be7ddf910 to your computer and use it in GitHub Desktop.
Save smilesrg/35747174a91be7ddf910 to your computer and use it in GitHub Desktop.
Register Globals emulation
<?php
// Emulate register_globals on
if (!ini_get('register_globals')) {
$superglobals = array($_SERVER, $_ENV, $_FILES, $_COOKIE, $_POST, $_GET);
if (isset($_SESSION)) {
array_unshift($superglobals, $_SESSION);
}
foreach ($superglobals as $superglobal) {
extract($superglobal, EXTR_SKIP);
}
ini_set('register_globals', true);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment