모바일 체크 때문에 질문 드립니다.
본문
검색중에 찾은 팁인데 동작이 안하는데 한번만 봐주실수 있나요?
<?php
// 모바일 체크 키워드
$is_mobile_ck = "'iphone', 'iPod', 'lgtelecom', 'skt', 'mobile', 'samsung', 'nokia', 'blackberry', 'android', '[^A]skt', 'LG', 'lgtel', 'MOT', 'Windows CE', 'sony', 'SonyEricsson', 'phone', 'symbian'";
$is_mobile_ck_kw = "'/(iphone|iPod|lgtelecom|skt|mobile|samsung|nokia|blackberry|android|[^A]skt|LG|lgtel|MOT|Windows CE|sony|SonyEricsson|phone|symbian)/i'";
// 모바일 체크
function is_mobile()
{
// 웹브라우저 user agent 체크
if ( preg_match($is_mobile_ck_kw, $_SERVER['HTTP_USER_AGENT']) )
return true;
else
return false;
}
?>
답변 1
모바일 어떤걸 체크한다는것인가요?
만약 모바일에서만 동작하게 하고 싶으면
<?php if (G5_IS_MOBILE) { ?>
모바일내용
<?php } ?>
이렇게 하시면됩니다.
답변을 작성하시기 전에 로그인 해주세요.