특정파일업로드시 메세지 > 그누4 질문답변

그누4 질문답변

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

특정파일업로드시 메세지 정보

특정파일업로드시 메세지

본문

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

댓글 전체

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

?>
© SIRSOFT
현재 페이지 제일 처음으로