일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 피보나치 수
- Python
- 10953
- codesingal
- 수 정렬하기
- cpp
- 2750
- Sequential Search
- adjacentElementsProduct
- C++
- 파이썬 포렌식
- Numpy
- 백준
- 파이썬머신러닝완벽가이드
- shapeArea
- flask
- recursion
- centuryFromYear
- 2015 봄학기 알고리즘
- data_structure
- matrixElementsSum
- baekjun
- All Longest Strings
- Counting cells in a blob
- markdown
- til
- collections.deque
- Daily Commit
- codesignal
- almostIncreasingSequence
Archives
- Today
- Total
Introfor
[PHP]$_FILES 본문
$_FILES['userfile']['name'] : 업로드된 파일명
$_FILES['userfile']['type'] : 브라우저가 제공한다면 MIME 형식. 예를 들면 이미지인지 동영상인지(images/jpg 등등)
$_FILES['userfile']['size'] : 업로드된 파일 크기
$_FILES['userfile']['tmp_name'] : 업로드된 파일을 서버측에서 임시로 저장해둔 이름
$_FILES['userfile']['error'] : 파일 업로드와 관련된 에러코드
※폼 태그에서 ENCTYPE="multipart/form-data"라는 애트리뷰트가 반드시 있어야 웹 서버로 데이터 전송 가능.
'Doing > Web' 카테고리의 다른 글
[PHP] 파일 복사, 삭제, 이름 변경 (0) | 2016.05.10 |
---|---|
[HTML]form태그 속성 (0) | 2016.05.10 |
HTTP request(GET,POST) (0) | 2016.05.06 |
[php]문자열 필터링 ereg, eregi 함수 (0) | 2016.04.26 |
[php]대문자->소문자 strtoupper(), 소문자->대문자 strtolower() (0) | 2016.04.25 |
Comments