[PHP] - File_exists 파일존재 유무 확인 / 삭제(사용법)

PHP 2011. 7. 19. 18:39
반응형
$abcd = "/upload/abcd.php";

if(file_exists($abcd)){
  unlink($abcd);
}
반응형
: