Getting the screen resolution using PHP

前端 未结 21 2249
你的背包
你的背包 2020-11-22 06:50

I need to find the screen resolution of a users screen who visits my website?

21条回答
  •  Happy的楠姐
    2020-11-22 07:26

    You can check it like below:

    if(strstr(strtolower($_SERVER['HTTP_USER_AGENT']), 'mobile') || strstr(strtolower($_SERVER['HTTP_USER_AGENT']), 'android')) {
       echo "mobile web browser!";
    } else {
    echo "web browser!";
    }
    

提交回复
热议问题