php 파일 확장자 구하기
페이지 정보

본문
$file_temp_name = $_FILES['upload_file']['name'];
//확장자
$file_temp_ext = strtolower(substr(strrchr($file_temp_name, '.'), 1));
// 허용할 파일확장자
$allowed_ext = array('jpg', 'jpeg', 'png', 'gif');
// 확장자 확인
if( !in_array($file_temp_ext, $allowed_ext) ) {
echo "<script> alert('ERROR'); location.href='./'; </script>";
exit;
}
- 이전글이미지 회전반영과 썸네일 생성 23.04.21
- 다음글중복 배열 값 삭제 및 배열의 마지막 값을 이용한 콤마 찍기 22.06.29
댓글목록
등록된 댓글이 없습니다.