相關(guān)關(guān)鍵詞
關(guān)于我們
最新文章
用php判斷當(dāng)前用戶訪問網(wǎng)站是否為手機登錄
現(xiàn) 在的網(wǎng)頁大多采用DIV+css設(shè)計布局,只要針對移動訪問者設(shè)計一個專門的css,但是移動用戶的時候則調(diào)用該CSS樣式。所以前提是要能夠偵測到用戶 是否采用移動設(shè)備,下面這個函數(shù)是PHP判斷用戶是否用手機訪問你的網(wǎng)站,可以判斷iphone,Android,Windows Mobile和一般的手機系統(tǒng),已經(jīng)能滿足這一需求。
相關(guān)鏈接:· js判斷是否是移動設(shè)備登陸網(wǎng)頁的簡單方法
public function isMobile()
{
$useragent=isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : '';
$useragent_commentsblock=preg_match('|\(.*?\)|',$useragent,$matches)>0?$matches[0]:'';
function CheckSubstrs($substrs,$text)
{
foreach($substrs as $substr)
if(false!==strpos($text,$substr))
{
return true;
}
return false;
}
$mobile_os_list=array('Google Wireless Transcoder','Windows CE','WindowsCE','Symbian','Android','armv6l','armv5','Mobile','CentOS','mowser','AvantGo','Opera Mobi','J2ME/MIDP','Smartphone','Go.Web','Palm','iPAQ');
$mobile_token_list=array('Profile/MIDP','Configuration/CLDC-','160×160','176×220','240×240','240×320','320×240','UP.Browser','UP.Link','SymbianOS','PalmOS','PocketPC','SonyEricsson','Nokia','BlackBerry','Vodafone','BenQ','Novarra-Vision','Iris','NetFront','HTC_','Xda_','SAMSUNG-SGH','Wapaka','DoCoMo','iPhone','iPod');
$found_mobile=CheckSubstrs($mobile_os_list,$useragent_commentsblock) ||
CheckSubstrs($mobile_token_list,$useragent);
if ($found_mobile)
{
return true;
}
else
{
return false;
}
}