Mobile regexp user agent

前端 未结 2 905
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-18 09:35

i have to check in my script for user agent for mobile.

i have

if(preg_match(\'/lg|iphone|blackberry|opera/i\', $_SERVER[\'HTTP_USER_AGENT\'])) { ...         


        
2条回答
  •  不思量自难忘°
    2021-01-18 09:58

    You can use the meta character ^ to denote start of string. You can read more about it here. The following pattern will only match lg if it's in the start of the string:

    ^lg|iphone|blackberry|opera/
    

    You can see a simple example it in action here: http://regexr.com?2vjec

提交回复
热议问题