五四战盟

Glad You Came

  • 1 Glad You Came Boyce Avenue
  • 2 认真地老去 张希&曹方
  • 3 别找我麻烦 蔡健雅
  • 4 小樱 饭碗的彼岸
  • 5 江上清风游 变奏的梦想
  • 6 城南花已开 ❁ 愿君彼安好(Remake)(翻自 三亩地) 桑子
  • 7 三亩地

PHPCMS完美实现手机版(双模版)

五四战盟 2017-08-31T06:21:42.000000Z 3011浏览 0条评论
首页/ 正文
分享到: / / / /

我在网站找了好多关于phpcms的手机版实现方法,大多数方法大同小异,但是多多少少都有些不完整,我这次来整理一下以便后续的phpcms爱好者来使用

此次修改需要修改两处

第一处为:打开/phpcms/libs/functions/global.func.php

添加手机版判断函数

/**
 * Function isMobile
  * @param $n 判断手机版
 */
 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;
     }
 }

第二处 为:phpcms/modules/content/index.php。大约在31行处

找到 “ include template(‘content’,’index’,$default_style); “

修改为

if(isMobile()){
    include template('content_m','index',$default_style);
}else{
    include template('content','index',$default_style);
}

然后分别大约在203、265、278行处(有三处哦)找到include template(‘content’,$template);

替换为以下代码

if(isMobile()){
    include template('content_m','index',$default_style);
}else{
    include template('content','index',$default_style);
}
最后修改:2020-06-20T05:06:10.000000Z © 著作权归作者所有
如果觉得我的文章对你有用,请随意赞赏
上一篇

发表评论

说点什么吧~

评论列表

扫一扫支付