3v4l.org

run code in 300+ PHP versions simultaneously
<?php if(preg_match('/MSIE (.*?);/', $_SERVER['HTTP_USER_AGENT']) || // This regex fails to detect IE 11 preg_match('/^(?=.*(Trident))(?=.*(rv:11.0)).*$/', $_SERVER['HTTP_USER_AGENT'])) // This regex recognizes IE 11 by matching the keywords "Trident" and "rv:11.0" { $url = 'IE detected'; } else { $url = 'not detected'; } echo $url;
Output for git.master, git.master_jit, rfc.property-hooks
Warning: Undefined array key "HTTP_USER_AGENT" in /in/YuLpJ on line 2 Deprecated: preg_match(): Passing null to parameter #2 ($subject) of type string is deprecated in /in/YuLpJ on line 2 Warning: Undefined array key "HTTP_USER_AGENT" in /in/YuLpJ on line 3 Deprecated: preg_match(): Passing null to parameter #2 ($subject) of type string is deprecated in /in/YuLpJ on line 3 not detected

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