php $_SERVER['HTTP_USER_AGENT'] 2
//mobile false pc true no pc
function is_mobile(){
$agent = strtolower($_SERVER[‘HTTP_USER_AGENT‘]);
$is_pc = (strpos($agent, ‘windows nt‘)) ? true : false;
$is_mac = (strpos($agent, ‘mac os‘)) ? true : false;
/* $is_linux = (strpos($agent, ‘linux‘)) ? true : false;
$is_unix = (strpos($agent, ‘unix‘)) ? true : false;
*/
$is_iphone = (strpos($agent, ‘iphone‘)) ? true : false;
$is_android = (strpos($agent, ‘android‘)) ? true : false;
$is_ipad = (strpos($agent, ‘ipad‘)) ? true : false;
if($is_pc){
return false;
}
if($is_mac){
return true;
}
/* if($is_linux){
return false;
}
if($is_unix){
return false;
} */
if($is_iphone){
return true;
}
if($is_android){
return true;
}
if($is_ipad){
return true;
}
}
function infoAgent(){
$agent = strtolower($_SERVER[‘HTTP_USER_AGENT‘]);
return $agent;
}
function is_iphone(){
$info = false;
if(strpos(tecrm::infoAgent(), ‘iphone‘)){
$info = "iphone";
}
return $info;
}
function is_android(){
$info = false;
if(strpos(tecrm::infoAgent(), ‘android‘)){
$info = "android";
}
return $info;
}
function is_ipad(){
$info = false;
if(strpos(tecrm::infoAgent(), ‘ipad‘)){
$info = "ipad";
}
return $info;
}
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。