3v4l.org

run code in 300+ PHP versions simultaneously
<?php /* if ($cgiMode) { $query = ""; if (!empty($_GET)) { // superglobals are always set foreach ($_GET as $k => $v) { // if empty, this won't iterate $query .= " $k"; if ($v != "") { $query .= "=$v"; } } } $query = ltrim($query); $argv = explode(' ', $query); $argc = count($argv); // declared but never used $_SERVER['argv'] = $argv; } */ if ($cgiMode) { $_SERVER['argv'] = []; foreach ($_GET as $k => $v) { $_SERVER['argv'][] = $k . ($v ? "={$v}" : ""); } $_SERVER['argc'] = count($_SERVER['argv']); // assuming this is actually needed }
Output for git.master, git.master_jit, rfc.property-hooks
Warning: Undefined variable $cgiMode in /in/1PXPg on line 21

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:
54.14 ms | 401 KiB | 8 Q