ȸ¿ø°¡ÀԡžÆÀ̵ð/ºñ¹øã±â
ȨÀ¸·Î


PHP·Î ºê¶ó¿ìÀú ¾Ë¾Æ³»±â
9³â Àü
¹æ¹®ÀÚÀÇ ºê¶ó¿ìÀú Á¾·ù¸¦ ¾Ë¾Æ³»´Â °ÍÀº À¥°³¹ßÀ» Çϴµ¥ ÀÖ¾î Çʼö»çÇ×ÀÌ´Ù. ¿äÁòµé¾î Ç¥ÁØÀ» ÁؼöÇÏ´Â Ãß¼¼¿¡ µû¶ó ¸¹Àº ºê¶ó¿ìÀú °°ÀÇ Â÷ÀÌ°¡ Á¼¾ÆÁö°í ÀÖÁö¸¸, ¾ÆÁ÷µµ Internet Explorer 6·Î ´ëÇ¥µÇ´Â ±¸½Ã´ë ºê¶ó¿ìÀú¸¦ »ç¿ëÇÏ´Â ¹æ¹®ÀÚ°¡ ¸¹´Ù. ¿¹¸¦µé¾î 2011³â 5¿ù 31ÀÏ ±âÁØÀ¸·Î ´ëÇѹα¹ ÀÎÅÍ³Ý »ç¿ëÀÚÀÇ 22.3%°¡ IE6¸¦ ¾²°í ÀÖÀ¸¸ç, ÀÌ´Â Àü¼¼°è¿¡¼­ Áß±¹¿¡ ÀÌ¾î µÎ¹ø°·Î ³ôÀº ºñÀ²ÀÌ´Ù (http://www.theie6countdown.com/).

±¸½Ã´ë ºê¶ó¿ìÀú´Â º¸¾Èµµ ¹®Á¦Áö¸¸, ÃֽŠǥÁØÀ¸·Î ±ÔÁ¤µÈ À¥ ±â¼úÀÇ »ó´çºÎºÐÀ» ±¸ÇöÇÏÁö ¸øÇÑ´Ù. »Ó¸¸ ¾Æ´Ï¶ó ÃֽŠ¹öÀüÀÇ ºê¶ó¿ìÀú¶ó ÇÒÁö¶óµµ °°Àº ÆäÀÌÁö¸¦ Ãâ·ÂÇÑ °á°ú¹°¿¡ °¢°¢ Å©°íÀÛÀº Â÷À̸¦ º¸ÀδÙ. µû¶ó¼­ À¥°³¹ßÀÚ´Â ÇϳªÀÇ À¥»çÀÌÆ®¸¦ ´Ù¾çÇÑ ¹öÀüÀ¸·Î ¸¸µéÁö ¾ÊÀ» ¼ö ¾ø±â¿¡ ¹æ¹®ÀÚÀÇ ºê¶ó¿ìÀú°¡ ¹«¾ùÀÎÁö ¾Ë¾Æ³»´Â °ÍÀº ½½ÇÁÁö¸¸ °£°úÇÒ ¼ö ¾ø´Â ºÎºÐÀÌ´Ù.

¿©±â¼­´Â PHP ÇÔ¼ö¸¦ ÀÌ¿ëÇØ °£´ÜÈ÷ ºê¶ó¿ìÀú Á¾·ù¸¦ ¾Ë¾Æ³»´Â ¹æ¹ýÀ» ¼Ò°³ÇÑ´Ù.

1)  ¾Æ·¡ÀÇ Äڵ带 ¿øÇÏ´Â ºÎºÐ¿¡ Ãß°¡ÇÑ´Ù.
function getBrowser()
{
    $u_agent = $_SERVER['HTTP_USER_AGENT'];
    $bname = 'Unknown';
    $platform = 'Unknown';
    $version= "";

    //First get the platform?
    if (preg_match('/linux/i', $u_agent)) { $platform = 'linux'; }
    elseif (preg_match('/macintosh|mac os x/i', $u_agent)) { $platform = 'mac'; }
    elseif (preg_match('/windows|win32/i', $u_agent)) { $platform = 'windows'; }
    
    // Next get the name of the useragent yes seperately and for good reason
    if(preg_match('/MSIE/i',$u_agent) && !preg_match('/Opera/i',$u_agent)) { $bname = 'Internet Explorer'; $ub = "MSIE"; }
    elseif(preg_match('/Firefox/i',$u_agent)) { $bname = 'Mozilla Firefox'; $ub = "Firefox"; }
    elseif(preg_match('/Chrome/i',$u_agent)) { $bname = 'Google Chrome'; $ub = "Chrome"; }
    elseif(preg_match('/Safari/i',$u_agent)) { $bname = 'Apple Safari'; $ub = "Safari"; }
    elseif(preg_match('/Opera/i',$u_agent)) { $bname = 'Opera'; $ub = "Opera"; }
    elseif(preg_match('/Netscape/i',$u_agent)) { $bname = 'Netscape'; $ub = "Netscape"; }
    
    // finally get the correct version number
    $known = array('Version', $ub, 'other');
    $pattern = '#(?<browser>' . join('|', $known) .
    ')[/ ]+(?<version>[0-9.|a-zA-Z.]*)#';
    if (!preg_match_all($pattern, $u_agent, $matches)) {
        // we have no matching number just continue
    }
    
    // see how many we have
    $i = count($matches['browser']);
    if ($i != 1) {
        //we will have two since we are not using 'other' argument yet
        //see if version is before or after the name
        if (strripos($u_agent,"Version") < strripos($u_agent,$ub)){ $version= $matches['version'][0]; }
        else { $version= $matches['version'][1]; }
    }
    else { $version= $matches['version'][0]; }
    
    // check if we have a number
    if ($version==null || $version=="") {$version="?";}
    return array('userAgent'=>$u_agent, 'name'=>$bname, 'version'=>$version, 'platform'=>$platform, 'pattern'=>$pattern);
}</version></browser>


2) ºê¶ó¿ìÀú Á¤º¸°¡ ÇÊ¿äÇÑ °÷¿¡ ¾Æ·¡¿Í °°ÀÌ Àû¿ëÇÑ´Ù.
$ua = getBrowser();
if($ua[name] == 'Internet Explorer' && $ua[version] < 8) { echo 'Internet Explorer 8 ÀÌÇÏÀÇ ¹öÀüÀ» »ç¿ëÇÏ°í °è½Ê´Ï´Ù'; }


ÃßõÃßõ : 436 Ãßõ ¸ñ·Ï
¹øÈ£ Á¦¸ñ
2,885
input ÀÔ·Â ÇÊµå ¾ÕµÚ °ø¹é ½Ç½Ã°£ Á¦°Å
2,884
Placeholder Æ÷Ä¿½º½Ã °¨Ãß±â
2,883
MySQL Áߺ¹µÈ µ¥ÀÌÅ͸¦ »èÁ¦
2,882
MySQL Áߺ¹ µ¥ÀÌÅÍ È®ÀÎ
2,881
sessionStorage.getItem ¿Í sessionStorage.setItem
2,880
Á¦ÀÌÄõ¸® ·£´ýÀ¸·Î ¹è°æ»ö º¯°æ
2,879
preg match¿¡ °üÇÑ Á¤±Ô½Ä
2,878
Stream an audio file with MediaPlayer ¿Àµð¿À ÆÄÀÏ ½ºÆ®¸®¹Ö Çϱâ
2,877
Audio Streaming PHP Code
2,876
PHP $ SERVER ȯ°æ º¯¼ö Á¤¸®
2,875
Vimeo (ºñ¸Þ¿À) API ¸¦ »ç¿ëÇÏ¿© Ç÷¹À̾î ÄÁÆ®·ÑÇϱâ
2,874
iframe »ç¿ë½Ã ÇÏ´Ü¿¡ ¹ß»ýÇÏ´Â °ø¹é Á¦°Å¹æ¹ý
2,873
¾ÆÀÌÇÁ·¹ÀÓ(iframe) Àüüȭ¸é °¡´ÉÇÏ°Ô Çϱâ
2,872
ºÎÆ®½ºÆ®·¦(bootstrapk)¿¡¼­ »ç¿ëÇÏ´Â class¸í Á¤¸®
2,871
ºÎÆ®½ºÆ®·¦ CSS
2,870
Å©·Ò¿¡¼­ ¸¶Áø Á¶Àý
2,869
PHP ÇöÀç ÆäÀÌÁöÀÇ µµ¸ÞÀθíÀ̳ª urlµîÀÇ Á¤º¸ ¾Ë¾Æ¿À±â
2,868
PHP preg match all()
2,867
PHP ·Î À¥ÆäÀÌÁö ±Ü¾î¿À±â ¸ðµç ¹æ¹ý ÃÑÁ¤¸®!
2,866
[PHP] ¿ø°ÝÁö ÆÄÀÏ ÁÖ¼Ò ³ëÃâ ¾ÈÇÏ°í curl·Î ´Ù¿î·Îµå ¹Þ±â
2,865
PHP ÇÔ¼ö Á¤¸®
2,864
¾ÆÀÌÇÁ·¹ÀÓ(iframe) ºñÀ² À¯ÁöÇϸ鼭 Å©±â Á¶ÀýÇÏ´Â ¹æ¹ý
2,863
PHP ¹è¿­¿¡¼­ ¹«ÀÛÀ§·Î Çϳª »Ì¾ÆÁÖ´Â array rand() ÇÔ¼ö
2,862
PHP Á¤±Ô½Ä Á¤¸®
2,861
PHP Á¤±Ô½ÄÀ» È°¿ëÇÑ ÅÂ±× ¹× ƯÁ¤ ¹®ÀÚ¿­ Á¦°Å ¹× ÃßÃâ ¹æ¹ý
2,860
php Å©·Ñ¸µ ¶Ç´Â ÆÄ½Ì ÇÔ¼ö, Á¤±Ô½Ä ¸ðÀ½
2,859
Á¦ÀÌÄõ¸® ±âº» ¸í·É¾î
2,858
À¥ÆäÀÌÁö °¡·Î ¸ðµå¼¼·Î ¸ðµå ÀνÄÇϱâ
2,857
¸ð¹ÙÀÏ À¥ È­¸é °­Á¦ ȸÀü(°¡·Î¸ðµå °íÁ¤)
2,856
[HTML5]¿¡¼­ frameset ´ëü ¹æ¹ý°ú iframe ¼Ó¼º
¸ñ·Ï
¹ÂÁ÷Æ®·ÎÆ® ºÎ»ê±¤¿ª½Ã ºÎ»êÁø±¸ °¡¾ßµ¿ ¤Ó °³ÀÎÁ¤º¸Ãë±Þ¹æħ
Copyright ¨Ï musictrot All rights reserved.