PHP Mobile Device Detection (iOS, Android, BlackBerry, PlayBook, WebOS…
본문
$iPod = stripos($_SERVER['HTTP_USER_AGENT'],"iPod"); $iPhone = stripos($_SERVER['HTTP_USER_AGENT'],"iPhone"); $iPad = stripos($_SERVER['HTTP_USER_AGENT'],"iPad"); if(stripos($_SERVER['HTTP_USER_AGENT'],"Android") && stripos($_SERVER['HTTP_USER_AGENT'],"mobile")){ $Android = true; }else if(stripos($_SERVER['HTTP_USER_AGENT'],"Android")){ $Android = false; $AndroidTablet = true; }else{ $Android = false; $AndroidTablet = false; } $webOS = stripos($_SERVER['HTTP_USER_AGENT'],"webOS"); $BlackBerry = stripos($_SERVER['HTTP_USER_AGENT'],"BlackBerry"); $RimTablet= stripos($_SERVER['HTTP_USER_AGENT'],"RIM Tablet"); //do something with this information if( $iPod || $iPhone ){ //were an iPhone/iPod touch -- do something here }else if($iPad){ //were an iPad -- do something here }else if($Android){ //we're an Android Phone -- do something here }else if($AndroidTablet){ //we're an Android Phone -- do something here }else if($webOS){ //we're a webOS device -- do something here }else if($BlackBerry){ //we're a BlackBerry phone -- do something here }else if($RimTablet){ //we're a RIM/BlackBerry Tablet -- do something here }else{ //we're not a mobile device. }
http://www.schiffner.com/programming-php-classes/php-mobile-device-detection/
페이지 정보
l2j (121.♡.101.20) 작성일12-08-15 11:14 조회1,587회 댓글0건관련링크
댓글목록
등록된 댓글이 없습니다.