php获取设备型号
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php获取设备型号相关的知识,希望对你有一定的参考价值。
/*
获取设备型号
*/
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获取设备型号的主要内容,如果未能解决你的问题,请参考以下文章