그곰의 생활

화이트 방식의 업로드 필터링 본문

Server-side/PHP

화이트 방식의 업로드 필터링

그곰 2011. 11. 7. 10:38
//start 화이트방식으로 주로 쓰이는 업로드 확장가가 아니면 강제 종료시키는겁니다.
$pattern = "/^\.(jpg|jpeg|gif|png|doc|docx|txt|rtf|pdf|xls|xlsx|ppt|pptx|hwp){1}$/i";
if(!preg_match($pattern, $filename)) 
  exit;
// end

Comments