3v4l.org

run code in 300+ PHP versions simultaneously
<?php function scope () { static $globals = null; if($globals === null) $globals = array( '_SERVER' => &$_SERVER, '_ENV' => &$_ENV, '_REQUEST' => &$_REQUEST, '_GET' => &$_GET, '_POST' => &$_POST, '_COOKIE' => &$_COOKIE, '_FILES' => &$_FILES, '_CUSTOM' => &$_CUSTOM ); var_dump($globals); } $_POST = null; scope();

preferences:
31.28 ms | 402 KiB | 5 Q