3v4l.org

run code in 300+ PHP versions simultaneously
<?php //because Safari wont play ball $browser = $_SERVER['HTTP_USER_AGENT']; $allowedBrowsers = array("Chrome", "Firefox"); $badBrowsers = array("Safari"); foreach ($allowedBrowsers as $userBrowser) { if (strpos($browser, $userBrowser) !== false) { print "<input type='search' name='search' placeholder='type here'>"; break; } else { print "<input type='text' name='search' placeholder='type here'>"; } } ?>
Output for git.master, git.master_jit, rfc.property-hooks
Warning: Undefined array key "HTTP_USER_AGENT" in /in/XdXq7 on line 4 Deprecated: strpos(): Passing null to parameter #1 ($haystack) of type string is deprecated in /in/XdXq7 on line 9 <input type='text' name='search' placeholder='type here'> Deprecated: strpos(): Passing null to parameter #1 ($haystack) of type string is deprecated in /in/XdXq7 on line 9 <input type='text' name='search' placeholder='type here'>

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:
43.68 ms | 402 KiB | 8 Q