|
ÆÀ¹ÀHTTP_USER_AGENT
<?
print"<html>";
print"<body>";
ereg("^([A-Za-z]+)/([0-9]+.[0-9]+)(.*)$",$HTTP_USER_AGENT,$match);
$user_name=$match[1];
$user_version=$match[2];
$user_description=$match[3];
if(eregi("msie",$user_description))
{
ereg("((.*);(.*)(.*);(.*))$",$user_description,$match);
$user_name=$match[2];
$user_version=$match[3];
}
print"ÄãʹÓõÄÊÇ $user_name";
print $user_version."!<br>";
print"</body></html>"
?>
|