일상 기록 창고

아파치에 GEOIP 가 설치되어 있을 경우 PHP 로 확인하기. 본문

프로그래밍/PHP

아파치에 GEOIP 가 설치되어 있을 경우 PHP 로 확인하기.

Crazy_Kong 2012. 7. 19. 15:48

 

<?php
    $country_code = apache_note("GEOIP_COUNTRY_CODE");
    $country_name = apache_note("GEOIP_COUNTRY_NAME");


    echo "$country_code<br>";
    echo "$country_name<br>";
?>
[ 결과 ]
KR
Korea, Republic of