programming/php

$_FILES

chanchand 2023. 1. 2. 02:19
반응형

$_FILES


HTTP 파일 업로드 변수

HTTP POST 메서드를 통해 업로드된 항목의 배열

업로드된 모든 파일 정보가 포함된다.

 

 

<form method=post enctype="multipart/form-data">
	<input type=file name=userfile>
    <input type=submit value='upload'>
</form>

 

$_FILES['userfile']['name']

클라이언트 기계에 있는 파일의 원본 이름

 

$_FILES['userfile']['type']

브라우저가 이 정보를 제공한 경우, 파일의 MIME 유형

ex) image/gif

php 측에서 MIME 유형은 확인되지 않으므로 확실하지는 않다.

 

$_FILES['userfile']['size']

업로드된 파일의 사이즈, 바이트

 

$_FILES['userfile']['tmp_name']

서버에 저장되는 업로드된 파일의 임시 이름

 

$_FILES['userfile']['error']

업로드된 파일과 연관된 에러 코드

 

$_FILES['userfile']['full_path']

브라우저에서 제출한 전체 경로

 

반응형

'programming > php' 카테고리의 다른 글

mb_convert_encoding  (0) 2023.01.02
magic_quotes_gpc  (0) 2023.01.02
addslashes  (0) 2023.01.02
substr  (0) 2023.01.02
에러 설정  (0) 2023.01.02