모바일 접속시 PC환경인지 모바일 환경인지 체크하는 소스이다
<?php 
$mobilechk = '/(iPod|iPhone|Android|BlackBerry|SymbianOS|SCH-M\d+|Opera Mini|Windows CE|Nokia|SonyEricsson|webOS|PalmOS)/i';  

// 모바일 접속인지 PC로 접속했는지 체크합니다. 
if(preg_match($mobilechk, $_SERVER['HTTP_USER_AGENT'])) { 
    echo "<script>location.href='/mobile/mobile_login.php';</script>"; 
}

'PHP' 카테고리의 다른 글

[PHP] html 코드 그대로 출력  (0) 2017.11.27
[PHP] NaN 뜰때 해결방법  (0) 2017.11.27
[PHP] define과 defined의 차이  (0) 2017.11.27
[PHP] PHPExcel을 이용해서 엑셀 다운로드  (0) 2017.11.27
[PHP] $_SERVER[''] 정리  (0) 2017.11.27

+ Recent posts