A

특정파일업로드시 메세지

브라우저에 따라서 영상업로드시
만약에 익스에서 wmv영상파일이 업로드 되면 동영상이 재생되지만
만약에 사파리에서는 "본브라우저에서는 지원이 안됩니다"
라는 메세지를 띄우려면 어떻게 하나요?
|

댓글 1개

<?php

// 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.';
}

?>
댓글을 작성하시려면 로그인이 필요합니다.

그누4 질문답변

그누보드4 관련 질문은 QA 로 이전됩니다. QA 그누보드4 바로가기 기존 게시물은 열람만 가능합니다.

+
제목 글쓴이 날짜 조회
13년 전 조회 585
13년 전 조회 866
13년 전 조회 780
13년 전 조회 1,201
13년 전 조회 1,527
13년 전 조회 990
13년 전 조회 1,136
13년 전 조회 786
13년 전 조회 985
13년 전 조회 806
13년 전 조회 1,607
13년 전 조회 972
13년 전 조회 837
13년 전 조회 750
13년 전 조회 857
13년 전 조회 670
13년 전 조회 788
13년 전 조회 762
13년 전 조회 740
13년 전 조회 1,007