|
|
|
13년 전
|
조회 589
|
|
|
|
13년 전
|
조회 868
|
|
|
|
13년 전
|
조회 785
|
|
|
|
13년 전
|
조회 1,204
|
|
|
|
13년 전
|
조회 1,529
|
|
|
|
13년 전
|
조회 995
|
|
|
|
13년 전
|
조회 1,140
|
|
|
|
13년 전
|
조회 791
|
|
|
|
13년 전
|
조회 987
|
|
|
|
13년 전
|
조회 810
|
|
|
|
13년 전
|
조회 1,610
|
|
|
|
13년 전
|
조회 975
|
|
|
|
13년 전
|
조회 841
|
|
|
|
13년 전
|
조회 751
|
|
|
|
13년 전
|
조회 860
|
|
|
|
13년 전
|
조회 673
|
|
|
|
13년 전
|
조회 791
|
|
|
|
13년 전
|
조회 766
|
|
|
|
13년 전
|
조회 743
|
|
|
|
13년 전
|
조회 1,010
|
댓글 1개
// check what browser the visitor is using
$user_agent = $_SERVER['HTTP_USER_AGENT'];
// This bit differentiates IE from Opera
if(preg_match('/MSIE/i',$u_agent) && !preg_match('/Opera/i',$u_agent))
{
print
'This is Internet Explorer. (Insert joke here)';
}
elseif(preg_match('/mozilla/i',$u_agent) && !preg_match('/compatible/', $userAgent))
{
print
'This is FireFox.';
}
// let Chrome be recognized as Safari
elseif(preg_match('/webkit/i',$u_agent))
{
print
'This is either Chrome or Safari.';
}
elseif(preg_match('/Opera/i',$u_agent))
{
print
'This is Opera. Like to live on the edge, huh?';
}
elseif(preg_match('/Netscape/i',$u_agent))
{
print
'This is Netscape, and you really need to upgrade.';
}
?>