일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- almostIncreasingSequence
- All Longest Strings
- markdown
- 피보나치 수
- C++
- 파이썬머신러닝완벽가이드
- 파이썬 포렌식
- codesingal
- matrixElementsSum
- Numpy
- centuryFromYear
- data_structure
- flask
- recursion
- til
- Counting cells in a blob
- 2015 봄학기 알고리즘
- Python
- 백준
- adjacentElementsProduct
- Sequential Search
- 수 정렬하기
- baekjun
- Daily Commit
- codesignal
- shapeArea
- cpp
- 10953
- 2750
- collections.deque
Archives
- Today
- Total
Introfor
[php]환경 변수 확인 getenv() 함수 본문
getenv()
함수의 인자로 오는 변수에 따라, 해당되는 환경 변수값을 알려주는 함수.
REMOTE_ADDR : 웹 사이트를 접속한 컴퓨터의 ip address
HTTP_USER_AGENT : 웹 사이트를 접속한 컴퓨터의 웹 브라우저 정보
1 2 3 4 5 6 7 | <?PHP $ip_address = getenv(REMOTE_ADDR); $browser_info = getenv(HTTP_USER_AGENT); echo("접속자 IP Address : $ip_address <br>"); echo("접속자 브라우저 정보 : $browser_info"); ?> | cs |
결과
접속자 IP Address : 127.0.0.1
접속자 브라우저 정보 : Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
'Doing > Web' 카테고리의 다른 글
HTTP request(GET,POST) (0) | 2016.05.06 |
---|---|
[php]문자열 필터링 ereg, eregi 함수 (0) | 2016.04.26 |
[php]대문자->소문자 strtoupper(), 소문자->대문자 strtolower() (0) | 2016.04.25 |
[php]$_SERVER 함수 (0) | 2016.04.25 |
[php]시작 문자와 끝 문자에 다음 표의 공백or 특수문자 제거하는 trim 함수 (0) | 2016.04.25 |
Comments