Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 갈레라
- html 구성
- Oracle
- php 7.3
- disk 100% 사용
- php 파일 삭제
- nginx
- 디스크 용량 확인
- disk full
- postfix
- php excel
- OTP 오류
- DOTCOM 마케팅 설계자 SECRET
- php 업로드 파일 삭제
- MariaDB
- 국민은행(기업)
- 복구
- wsrep
- ZipArchive 오류
- nginx 1.12.0
- Laravel
- user style
- OTP 보정오류
- php zip 모듈
- navicat
- author style
- error 1728
- mysql.proc 오류
- CSS
- centos7
Archives
- Today
- Total
Jehna :)
PHP 업로드 파일 삭제 본문
* 환경
CentOS7.x / php 7.3
opendir로 삭제하려는 파일이 위치한 디렉토리를 열고 unlink로 파일 삭제!
생각보다 쉽고 간단합니당~
// 파일 경로 선언 $upload_path = $_SERVER['DOCUMENT_ROOT']."/test/"; // 파일이 위치한 디렉토리 열기 if ( opendir($upload_path) ) { @unlink($upload_path."파일명.txt"); } |
'윌리 > PHP' 카테고리의 다른 글
[PHP] Class 'ZipArchive' not found 에러 (0) | 2022.07.21 |
---|