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;
}
|