建站百科

网站建设、网站设计、网站开发、域名、主机、服务器等知识普及

phpcms手机版实现方法

文章导读:本文主要阐述了“phpcms手机版实现方法”在网站找了好多关于phpcms的手机版实现方法,大多数方法大同小异,但是多多少少都有些不完整,我这次来整理一下以便后续的phpcms...,本文由跨屏网最后更新于2020-07-25,全文共1554个字,预计阅读时长5分10秒

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

此次修改需要修改两处

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

添加手机版判断函数

  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); }

写在最后,以上就是对于“phpcms手机版实现方法”的一些看法,欢迎指正、交流。

分享信息:phpcms手机版实现方法
本文路径:http://test.kuaping.com/article/show182.html

推荐模板
紫色大气教育培训模板
编号:partf#zisejiaoyu
游戏电影适用深蓝色网站模板
编号:partf#gamedianying
医生科研生物网站带时间轴模板
编号:partf#daishijianzhou
学习教育培训类模板
编号:partf#jiaoyuedu
网站即将上线引导页
编号:partf#shangxianyindao
免责声明:本站是自助建站平台,仅提供信息存储空间服务,该信息内容的真实性及合法性由该发布者完全负责。
咨询客服

8年品牌 专注移动电商

扫码立即咨询

027-817-77732

133-434-77732

关注我们

关注跨屏互联公众号

回到顶部