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