tp5中手机端和pc端判断一、使用自定义的判定方法首先在application>common.php公共文件中写入用于判定设备登录的ismobile方法:
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那一定是移动设备 // 如果支持wml和html但是wml在html之前则是移动设备 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;}
然后在application>index>controller>base.php前台index模块的基类控制器base中重写fetch方法:
/** *加载模板输出(电脑和手机) * @accessprotected * @paramstring$template模板文件名 * @paramstring$mobiletemplate手机模板文件名 * @paramarray$vars模板输出变量 * @paramarray$replace模板替换 * @paramarray$config模板参数 * @returnmixed */protectedfunction fetch($template = '', $mobiletemplate = '', $vars = [], $replace = [], $config = []){ if (ismobile()) { return $this->view->fetch($mobiletemplate, $vars, $replace, $config); } else { return $this->view->fetch($template, $vars, $replace, $config); }}
最后在application>index>controller>index继承与基类base的控制器index的方法index中最后分别传入pc端的路径和mobile端的路径即可。
return $this->fetch('default/index/index','mobile/index/index');
前面的default/index/index是pc端对应的路径,后面的mobile/index/index是mobile端对应的路径。
二、使用tp5自带的判断方法(推荐使用,已优化)通过上面的方法我们可以看出,虽然起作用,但是每次 都要传入两个路径,很是繁琐。
首先在application>common.php公共文件中写入用于判定设备登录的常量view_path:
if (\think\request::instance()->ismobile()) { define('view_path', __dir__ . '/../application/index/view/mobile/');} else { define('view_path', __dir__ . '/../application/index/view/default/');}
接着在application>index>config.php模块index的配置文件config.php中进行模板变量的替换:
return [ "template"=>[ // 模板路径 'view_path' => view_path, ],];
最后在控制器的方法中只需要直接fetch一个路径即可。
return $this->fetch();
tip:前台页面的目录结构如图所示:
注意default和mobile下的目录结构保持一致
以上就是本文的全部内容,希望对大家的学习有所帮助,更多相关内容请关注!
相关推荐:
php中把数组中的值赋给一组变量的方法
laravel在终端中查看日志的方法
以上就是tp5判断手机端和pc端的详细内容。
