ios, android, blackberry 등 디바이스 구별 방법

PHP stristr() 함수를 이용해서 $_SERVER 배열의 HTTP_USER_AGENT 값을 비교하여 쉽게 구별할 수 있다.

if( stristr($_SERVER['HTTP_USER_AGENT'],'ipad') ) {
    $device = "ipad";
} else if( stristr($_SERVER['HTTP_USER_AGENT'],'iphone') || 
    strstr($_SERVER['HTTP_USER_AGENT'],'iphone') ) {
    $device = "iphone";
} else if( stristr($_SERVER['HTTP_USER_AGENT'],'blackberry') ) {
    $device = "blackberry";
} else if( stristr($_SERVER['HTTP_USER_AGENT'],'android') ) {
    $device = "android";
} else {
    $device = "etc";
}