';
$smart = array(
'iPhone', // Apple iPhone
'iPad', //Apple iPad
'iPod', // Apple iPod touch
'Android', // 1.5+ Android
'dream', // Pre 1.5 Android
'CUPCAKE', // 1.5+ Android
'blackberry9500', // Storm
'blackberry9530', // Storm
'blackberry9520', // Storm v2
'blackberry9550', // Storm v2
'blackberry9800', // Torch
'webOS', // Palm Pre Experimental
'incognito', // Other iPhone browser
'webmate', // Other iPhone browser
'BlackBerry',
'IEMobile'
);
$smart_pattern = '/'.implode('|', $smart).'/i';
// echo '
';
if (preg_match("/^DoCoMo/i", $agent) || preg_match("/^(J\-PHONE|Vodafone|MOT\-[CV]|SoftBank)/i", $agent) || preg_match("/^KDDI\-/i", $agent) || preg_match("/UP\.Browser/i", $agent)) {
//return "galapagos";
//echo "これはガラケー
";
//echo '- モバイル用応募要項ページ
';
header("Location: http://west-hakodate.com/contest_mobile.html");
exit();
} else if (preg_match($smart_pattern, $agent)) {
//return "smartphone";
//echo "これはアイホン
";
//echo '- スマートフォン用応募要項ページ
';
header("Location: http://west-hakodate.com/contest_smart.html");
exit();
} else {
//return "pc";
//echo "これはパソコン
";
//echo '- パソコン用応募要項ページ
';
//echo '- 管理ログイン画面(本番削除)
';
header("Location: http://west-hakodate.com/contest_pc.html");
exit();
}
// echo '
';
?>