thinkphp实现手机端与电脑端双模板的方法与详细教程

2024-06-27 368 0

thinkphp8 实现手机端与电脑端双模板的方法

首先加载第三方判断客户端UA类库  类库地址 http://mobiledetect.net/

composer require mobiledetect/mobiledetectlib

编辑你的项目目录基础类文件Base

引入下载的类库

use Detection\MobileDetect;

 

在控制器渲染模板的时候直接判断即可

$MobileDetect = new MobileDetect;
if ($MobileDetect->isMobile()) {
    $this->view('mobile');
} else {
  $this->view('pc');
}

 

    相关文章

    织音云上新香港Platinum 8358处理器性能怪兽,爆炸高配折后最低仅需32元/月,数据对标物理机
    2025年华纳云新年焕新季,香港云4H4G3M特惠696元/年,E5物理服务器688元/月起
    莱卡云:2025年1月香港云服务器、美国云服务器、日本云服务器促销活动
    ThinkPHP6多应用多语言切换,最佳解决方案
    thinkphp thinkphp6 安装JWT
    php使用ip-api根据ip地扯获取位置信息

    发布评论