php
파일 확장자 구하기
- 관리자 2023.01.11 php 인기
-
- 4,053
- 0
$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;
}
- 이전글이미지 회전반영과 썸네일 생성2023.04.21
- 다음글중복 배열 값 삭제 및 배열의 마지막 값을 이용한 콤마 찍기2022.06.29
댓글목록
등록된 댓글이 없습니다.