피시버전에서 모바일 버전이 뜨는데 왜그럴까요?
본문
컨피그에서 both에 모바일 트루로 해놓았고
피시는 theme/index에서 작업하고 모바일은 theme/mobile/index에서 작업했는데
피시에서 화면을 새로고침 누르면 모바일 버전이 로드 됩니다.
이런 현상 겪어보신 적 있으신 분 계실까요?
해결해보신분 제발 도와주세요...ㅠ
답변 2
위의 주소에서 해당 펑션을 복사해두시고
<?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"){
$device = 'mobile';
}else{
$device = 'pc';
}
?>
답변을 작성하시기 전에 로그인 해주세요.