반응형
<?php
// Include and instantiate the class.
require_once
'Mobile_Detect.php'
;
$detect
=
new
Mobile_Detect;
// Any mobile device (phones or tablets).
if
(
$detect
->isMobile() ) {
}
// Any tablet device.
if
(
$detect
->isTablet() ){
}
// Exclude tablets.
if
(
$detect
->isMobile() && !
$detect
->isTablet() ){
}
// Check for a specific platform with the help of the magic methods:
if
(
$detect
->isiOS() ){
}
if
(
$detect
->isAndroidOS() ){
}
?>
출처
http://www.bitrepository.com/detect-mobile-devices-on-front-end-and-back-end.html
반응형
'Story > php' 카테고리의 다른 글
고도몰 모바일에서 오늘본상품 보여주기 (0) | 2016.07.05 |
---|---|
고도몰에서 추가페이지를 iframe 로 사용시 주의사항 (0) | 2016.04.14 |
PHP 5.2 이전 버전에서 json_encode 를 사용하고 싶을때 (0) | 2015.04.01 |
Alipay의 최신 Error Code (0) | 2015.03.09 |
유튜브 영상 주소에서 영상 아이디 값구하는 정규식 / parse youtube video id using preg_match (0) | 2015.01.29 |