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;

preferences:
38.12 ms | 402 KiB | 5 Q