혹시 부라우저에 따라..

혹시 접속 브라우저에 따라 관련 보턴이 보이고 안보이고하는
기능이 있는지요?
 
예를들어
익스로 접속하면 단추가 보이고
그외에는 안보이고하는..
|

댓글 2개

lib/visit.lib.php에 있는 다음 함수를 이용해서 브라우저 체크후 화면 출력처리하면 될것 같습니다.

// get_browser() 함수는 이미 있음
function get_brow($agent)
{
$agent = strtolower($agent);

//echo $agent; echo "<br/>";

if (preg_match("/msie 5.0[0-9]*/", $agent)) { $s = "MSIE 5.0"; }
else if(preg_match("/msie 5.5[0-9]*/", $agent)) { $s = "MSIE 5.5"; }
else if(preg_match("/msie 6.0[0-9]*/", $agent)) { $s = "MSIE 6.0"; }
else if(preg_match("/msie 7.0[0-9]*/", $agent)) { $s = "MSIE 7.0"; }
else if(preg_match("/msie 4.[0-9]*/", $agent)) { $s = "MSIE 4.x"; }
else if(preg_match("/firefox/", $agent)) { $s = "FireFox"; }
else if(preg_match("/x11/", $agent)) { $s = "Netscape"; }
else if(preg_match("/opera/", $agent)) { $s = "Opera"; }
else if(preg_match("/gec/", $agent)) { $s = "Gecko"; }
else if(preg_match("/bot|slurp/", $agent)) { $s = "Robot"; }
else { $s = "기타"; }

return $s;
}
감사합니다.
visit.lib.php??...^^--@
이곳이 G4질답란이었다는걸 잠시..

그냥 일반글 보턴에 적용하고자
댓글을 작성하시려면 로그인이 필요합니다. 로그인

그누4 질문답변

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

+
제목 글쓴이 날짜 조회
19년 전 조회 1,555
19년 전 조회 1,561
19년 전 조회 1,938
19년 전 조회 1,725
19년 전 조회 1,525
19년 전 조회 1,514
19년 전 조회 1,691
19년 전 조회 1,511
19년 전 조회 1,599
19년 전 조회 1,531
19년 전 조회 1,597
19년 전 조회 1,486
19년 전 조회 1,671
19년 전 조회 1,686
19년 전 조회 1,525
19년 전 조회 1,862
19년 전 조회 1,969
19년 전 조회 1,651
19년 전 조회 2,037
19년 전 조회 1,799
🐛 버그신고