파일 업로드 관련 함수 (예제없음)
HTML까지 있어야 해서 예제가 애매합니다;;
업로드하는 부분 할때 재 작성하겠습니다.
bool is_uploaded_file ( string $filename )
$filename가 업로드된 파일인지 확인합니다.(POST방식)
bool move_uploaded_file ( string $filename , string $destination )
업로드 된 파일을 $destination 경로로 변경합니다.(POST방식)
'php5 > 파일관련함수' 카테고리의 다른 글
파일 목록 배열 반환 - array scandir ( string $directory ) (0) | 2014.01.10 |
---|---|
파일 출력과 길이 반환 - int readfile ( string $filename ) (0) | 2014.01.10 |
파일 실행 가능 확인 - bool is_executable ( string $filename ) (0) | 2014.01.10 |
파일 일반파일 확인 - bool is_file ( string $filename ) (0) | 2014.01.10 |
파일 디렉토리 확인 - bool is_dir ( string $filename ) (0) | 2014.01.10 |