php判斷手機是安卓系統仍是ios系統

function get_device_type()
{
 //所有變成小寫字母
 $agent = strtolower($_SERVER['HTTP_USER_AGENT']);
 $type ='other';
 //分別進行判斷
 if(strpos($agent,'iphone') || strpos($agent,'ipad'))
{
   $type ='ios';
 }
 
 if(strpos($agent,'android'))
{
   $type ='android';
 }
 return$type;
}


php判斷頁面是不是微信打開

$user_agent = $_SERVER['HTTP_USER_AGENT'];
if (strpos($user_agent, 'MicroMessenger') === false) {
    // 非微信瀏覽器禁止瀏覽
    echo "HTTP/1.1 401 Unauthorized";
} else {
    // 微信瀏覽器,容許訪問
    echo "MicroMessenger";
    // 獲取版本號
    preg_match('/.*?(MicroMessenger\/([0-9.]+))\s*/', $user_agent, $matches);
    echo '<br>Version:'.$matches[2];
}
相關文章
相關標籤/搜索