if (!function_exists('get_device_type')) {
/**
* 获取设备类型(苹果或安卓)
* @return int 返回结果
*/
function get_device_type()
{
// 全部变成小写字母
$agent = strtolower($_SERVER['HTTP_USER_AGENT']);
$type = 0;
// 分别进行判断
if (strpos($agent, 'iphone') !== false || strpos($agent, 'ipad') !== false) {
$type = 1;
}
if (strpos($agent, 'android') !== false) {
$type = 2;
}
return $type;
}
}
智享笔记