Regular expression to detect Internet Explorer 11

后端 未结 8 1937
逝去的感伤
逝去的感伤 2021-01-11 18:43

I am using this preg_match string

preg_match(\'/Trident/7.0; rv:11.0/\',$_SERVER[\"HTTP_USER_AGENT\"]

to detect IE11 so I can

8条回答
  •  自闭症患者
    2021-01-11 19:43

    I think it should be

    if (preg_match("/Trident\/7.0;(.*)rv:11.0/", $_SERVER["HTTP_USER_AGENT"], $match) != 0) {}
    

    because sometimes you can see the user agent like this one

    Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; ASU2JS; rv:11.0) like Gecko

提交回复
热议问题