TP5 怎样部署手机端和电脑端

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/Jack_num1/article/details/80000604

TP5部署手机端和电脑端版本1.0
(1)采用继承公共基类Base(2)在控制器里分别判断手机端和电脑端 
(优点:可以根据具体控制器跳转相应手机或电脑端的网页;缺点:每个控制器都需要去判断)
提示:如有更好的办法希望大家可以讨论,分享出来,共同学习进步。
这里有位博主的另外种方法:https://blog.csdn.net/OnePiece_only/article/details/79586271
一、具体如下:
1、在application下创建common-controller-Base.php
<?php
/**
 * Created by PhpStorm.
 * User: 91358
 * Date: 2018/4/17
 * Time: 14:54
 */

namespace app\common\controller;
use think\Controller;

class Base extends Controller
{
    public function ismobile() {
// 如果有HTTP_X_WAP_PROFILE则一定是移动设备
        if (isset ($_SERVER['HTTP_X_WAP_PROFILE']))
            return true;
//此条摘自TPM智能切换模板引擎,适合TPM开发
        if(isset ($_SERVER['HTTP_CLIENT']) &&'PhoneClient'==$_SERVER['HTTP_CLIENT'])
            return true;
//如果via信息含有wap则一定是移动设备,部分服务商会屏蔽该信息
        if (isset ($_SERVER['HTTP_VIA']))
//找不到为flase,否则为true
            return stristr($_SERVER['HTTP_VIA'], 'wap') ? true : false;
//判断手机发送的客户端标志,兼容性有待提高
        if (isset ($_SERVER['HTTP_USER_AGENT'])) {
            $clientkeywords = array(
                'nokia','sony','ericsson','mot','samsung','htc','sgh','lg','sharp','sie-','philips','panasonic','alcatel','lenovo','iphone','ipod','blackberry','meizu','android','netfront','symbian','ucweb','windowsce','palm','operamini','operamobi','openwave','nexusone','cldc','midp','wap','mobile'
            );
//HTTP_USER_AGENT中查找手机浏览器的关键字
            if (preg_match("/(" . implode('|', $clientkeywords) . ")/i", strtolower($_SERVER['HTTP_USER_AGENT']))) {
                return true;
            }
        }
//协议法,因为有可能不准确,放到最后判断
        if (isset ($_SERVER['HTTP_ACCEPT'])) {
// 如果只支持wml并且不支持html那一定是移动设备
// 如果支持wmlhtml但是wmlhtml之前则是移动设备
            if ((strpos($_SERVER['HTTP_ACCEPT'], 'vnd.wap.wml') !== false) && (strpos($_SERVER['HTTP_ACCEPT'], 'text/html') === false || (strpos($_SERVER['HTTP_ACCEPT'], 'vnd.wap.wml') < strpos($_SERVER['HTTP_ACCEPT'], 'text/html')))) {
                return true;
            }
        }
        return false;
    }

}

2、手机端和PC端控制器继承基类Base.php

(1)使用Base基类

 
 
use app\ common\ controller\ Base;
(2)控制器继承Base基类

class Index extends Base
(3)方法中添加判断跳转不同页面
if ($this->ismobile()){
    return $this->redirect('http://www.udream.com/mobile.html');
}


猜你喜欢

转载自blog.csdn.net/Jack_num1/article/details/80000604