<?php // 모바일 PC 확인 함수 추가
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"){ // 모바일 PC 함수 사용?>
<?php
include 'a.php';
?>
<?php } ?>
---------------------------------------------------------------------------------------------------------------------------------------------------------------------
!= / ==
수정하면 변경 할수 있습니다.