在自己做的實習(xí)項目中 我對手機和PC端瀏覽器的切換有了一點求知欲,通過項目代碼和網(wǎng)上的講解,整理代碼如下:
1.把下面的代碼放在application\common.php公共方法那里锨侯。
function isMobile()
{
// 如果有HTTP_X_WAP_PROFILE則一定是移動設(shè)備
if (isset ($_SERVER['HTTP_X_WAP_PROFILE']))
return true;
// 如果via信息含有wap則一定是移動設(shè)備,部分服務(wù)商會屏蔽該信息
if (isset ($_SERVER['HTTP_VIA']))
{
// 找不到為flase,否則為true
return stristr($_SERVER['HTTP_VIA'], "wap") ? true : false;
}
// 腦殘法吮成,判斷手機發(fā)送的客戶端標(biāo)志,兼容性有待提高
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中查找手機瀏覽器的關(guān)鍵字
if (preg_match("/(" . implode('|', $clientkeywords) . ")/i", strtolower($_SERVER['HTTP_USER_AGENT'])))
return true;
}
// 協(xié)議法浴捆,因為有可能不準(zhǔn)確,放到最后判斷
if (isset ($_SERVER['HTTP_ACCEPT']))
{
// 如果只支持wml并且不支持html那一定是移動設(shè)備
// 如果支持wml和html但是wml在html之前則是移動設(shè)備
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.再在index模塊下的公共方法內(nèi)構(gòu)造方法 __construct()凰浮,如果判斷!isMobile()為true則執(zhí)行redirect('admin/user/index')方法(移動端的控制器)
<?php
namespace app\index\controller;
use think\Controller;
class Base extends Controller {
public function __construct(){
if(!isMobile()){
return $this->redirect('admin/user/index');
}
}
}
***3.再在index模塊下的Test控制器內(nèi)繼承Base
<?php
namespace app\index\controller;
use app\index\controller\Base as IndexBaseController;
class Test extends IndexBaseController{
public function index(){
return $this->fetch("index");
}
}