Created
June 26, 2011 04:03
-
-
Save blockworks/1047224 to your computer and use it in GitHub Desktop.
PHPでユーザーエージェントを使用して機種を識別する
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> | |
<title>ユーザーエージェントで機種を識別する</title> | |
</head> | |
<body> | |
<?php | |
$agent = $_SERVER['HTTP_USER_AGENT']; | |
if(preg_match("/^DoCoMo/i", $agent)){ | |
echo "あなたは、DoCoMoからアクセスしています。<br />"; | |
echo "ユーザーエージェント:$agent"; | |
}else if(preg_match("/^(J\-PHONE|Vodafone|MOT\-[CV]|SoftBank)/i", $agent)){ | |
echo "あなたは、SoftBankからアクセスしています。<br />"; | |
echo "ユーザーエージェント:$agent"; | |
}else if(preg_match("/^KDDI\-/i", $agent) || preg_match("/UP\.Browser/i", $agent)){ | |
echo "あなたは、auからアクセスしています。<br />"; | |
echo "ユーザーエージェント:$agent"; | |
}else if(ereg("iPad",$agent)){ | |
echo "あなたは、iPadからアクセスしています。<br />"; | |
echo "ユーザーエージェント:$agent"; | |
}else if(ereg("iPhone",$agent)){ | |
echo "あなたは、iPhoneからアクセスしています。<br />"; | |
echo "ユーザーエージェント:$agent"; | |
}else{ | |
echo "あなたは、PCからアクセスしています。<br />"; | |
echo "ユーザーエージェント:$agent"; | |
} | |
?> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment