php如何判断页面是在PC端还是移动端,下面是直接上代码:
public function isMobile(){
$useragent = isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : '';
$useragent_commentsblock = preg_match('|\(.*?\)|',$useragent,$matches)>0?$matches[0]:'';
function CheckSubstrs($substrs,$text){
foreach($substrs as $substr)
if(false!==strpos($text,$substr)){
return true;
}
return false;
}
$mobile_os_list = array('Google Wireless Transcoder','Windows CE','WindowsCE','Symbian','Android','armv6l','armv5','Mobile','CentOS','mowser','AvantGo','Opera Mobi','J2ME/MIDP','Smartphone','Go.Web','Palm','iPAQ');
$mobile_token_list = array('Profile/MIDP','Configuration/CLDC-','160×160','176×220','240×240','240×320','320×240','UP.Browser','UP.Link','SymbianOS','PalmOS','PocketPC','SonyEricsson','Nokia','BlackBerry','Vodafone','BenQ','Novarra-Vision','Iris','NetFront','HTC_','Xda_','SAMSUNG-SGH','Wapaka','DoCoMo','iPhone','iPod');
$found_mobile = CheckSubstrs($mobile_os_list,$useragent_commentsblock) || CheckSubstrs($mobile_token_list,$useragent);
if ($found_mobile){
return true;
}else{
return false;
}
}
if (isMobile()){
echo '我是手机端';
}else{
echo '我是PC端';
}
?>
上面是“php如何判断页面是在PC端还是移动端”的全面内容,想了解更多关于 php入门 内容,请继续关注web建站教程。
当前网址:https://ipkd.cn/webs_2073.html
workflows工作流
停在音乐节露营地的一辆复古大众巴士由羊毛制成
一棵白色心形流苏树comfyui工作流
乡村枯树黄花comfyui工作流
一只可爱的飞鸟ComfyUI工作流
水晶玉雕巨龙ComfyUI工作流
一条赤壁龙从蛋中孵化出来ComfyUI工作流
森林里一只邪恶的树妖ComfyUI工作流
森林里坐着一个外星人ComfyUI工作流
猜你喜欢
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!

2023年程序猿如何给自己开启一场烟花盛会
HTML5 Canvas 刻度尺
js+css3做一个灯泡开灯关灯效果
自动打字效果(惊喜在后面)
javascript如何利用draggable实现一个拖拽效果
3d文字动画效果
canvas空间文本射线
利用CSS3代码编写45款按钮效果










