유용한 자료
< 자료공유 < 유용한 자료
기타자료실

mobile | 모바일 버전에서 pc로 이동후 다시 모바일로 이동하기

페이지 정보

작성자 madalla 작성일14-06-16 21:17 조회1,604회 댓글0건

본문

<?php
function MobileCheck() {
    global $HTTP_USER_AGENT;
    $MobileArray  = array("iphone","lgtelecom","skt","mobile","samsung","nokia","blackberry","android","android","sony","phone");


    $checkCount = 0;
        for($i=0; $i<sizeof($MobileArray); $i++){
            if(preg_match("/$MobileArray[$i]/", strtolower($HTTP_USER_AGENT))){ $checkCount++; break; }
        }
  return ($checkCount >= 1) ? "Mobile" : "Computer";
}
?>


<?php
if(MobileCheck() == "Mobile"){
    echo"<div style='text-align:center;font-size:40px;font-weight:bold;height:80px;width:100%;margin:20px 0 0 0;background-color:#f1f1f1;border-top:1px solid #ccc;border-bottom:1px solid #ccc;padding-top:10px;'><br /><a href='/index.php?device=mobile'>모바일버전으로 보기</a></div>";
}
?>

모바일에서 pc로 접속했을 때 하단에 모바일버전으로 보기 버튼이 보임
  • 페이스북으로 보내기
  • 트위터로 보내기
  • 구글플러스로 보내기