Skip to content

Instantly share code, notes, and snippets.

@yujuwon
Created October 31, 2013 07:20
Show Gist options
  • Select an option

  • Save yujuwon/7245490 to your computer and use it in GitHub Desktop.

Select an option

Save yujuwon/7245490 to your computer and use it in GitHub Desktop.
<?php
function _checkMobile(){
$result = false;
$mobile = '/(iPhone|Android)/';
if(preg_match($mobile, $_SERVER['HTTP_USER_AGENT'])){
$result = true; // 현재 모바일에서 들어온 HTTP 요청임.
}
return $result;
}
if(_checkMobile() == true){
echo "모바일 접속 입니다.";
}else{
echo "PC 접속 입니다.";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment