phpcms 怎样实现PC端、手机端的双模版
#phpcms 怎样实现电脑,手机访问自动调用不同模板而URL地址不变?
1、按照路径 www\phpcms\template,在 template文件夹下面 新建 content_m文件夹;
2、在 content_m下面放入事先写好的 html 手机端模板页面;
3、复制下面的本文替换www\phpcms\modules\content\index.php里面的几处代码,需要修改的几处位置为:
**第一处:**第31行的 include template('content','index',$default_style);
**第二处:**第203行 include template('content',$template);
**第三处:**第265行 include template('content',$template);
**第四处:**第278行 include template('content',$template);
准备替换成的代码为:
/*判断客户端*/
if(substr($_SERVER['SERVER_NAME'], 0,1) == 'm'){
include template('content_m',$template);
}elseif(stristr($_SERVER['HTTP_VIA'],"wap")){// 先检查是否为wap代理,准确度高
include template('content_m',$template);
}elseif(strpos(strtoupper($_SERVER['HTTP_ACCEPT']),"VND.WAP.WML") > 0){// 检查浏览器是否接受 WML.
include template('content_m',$template);
}elseif(preg_match('/(blackberry|configuration\/cldc|hp |hp-|htc |htc_|htc-|iemobile|kindle|midp|mmp|motorola|mobile|nokia|opera mini|opera |Googlebot-Mobile|YahooSeeker\/M1A1-R2D2|android|iphone|ipod|mobi|palm|palmos|pocket|portalmmm|ppc;|smartphone|sonyericsson|sqh|spv|symbian|treo|up.browser|up.link|vodafone|windows ce|xda |xda_)/i', $_SERVER['HTTP_USER_AGENT'])){//检查USER_AGENT
include template('content_m',$template);
}else{
include template('content',$template);
}
此总方法只适合电脑版手机版都是动态地址的情况,如果生成纯静态页面可能会出现问题。
#phpcms 怎样实现电脑,手机访问自动调用不同模板而URL地址不变?
1、按照路径 www\phpcms\template,在 template文件夹下面 新建 content_m文件夹;
2、在 content_m下面放入事先写好的 html 手机端模板页面;
3、复制下面的本文替换www\phpcms\modules\content\index.php里面的几处代码,需要修改的几处位置为:
**第一处:**第31行的 include template('content','index',$default_style);
**第二处:**第203行 include template('content',$template);
**第三处:**第265行 include template('content',$template);
**第四处:**第278行 include template('content',$template);
准备替换成的代码为:
/*判断客户端*/
if(substr($_SERVER['SERVER_NAME'], 0,1) == 'm'){
include template('content_m',$template);
}elseif(stristr($_SERVER['HTTP_VIA'],"wap")){// 先检查是否为wap代理,准确度高
include template('content_m',$template);
}elseif(strpos(strtoupper($_SERVER['HTTP_ACCEPT']),"VND.WAP.WML") > 0){// 检查浏览器是否接受 WML.
include template('content_m',$template);
}elseif(preg_match('/(blackberry|configuration\/cldc|hp |hp-|htc |htc_|htc-|iemobile|kindle|midp|mmp|motorola|mobile|nokia|opera mini|opera |Googlebot-Mobile|YahooSeeker\/M1A1-R2D2|android|iphone|ipod|mobi|palm|palmos|pocket|portalmmm|ppc;|smartphone|sonyericsson|sqh|spv|symbian|treo|up.browser|up.link|vodafone|windows ce|xda |xda_)/i', $_SERVER['HTTP_USER_AGENT'])){//检查USER_AGENT
include template('content_m',$template);
}else{
include template('content',$template);
}
此总方法只适合电脑版手机版都是动态地址的情况,如果生成纯静态页面可能会出现问题。