'2008/11/01'에 해당되는 글 1건

  1. 2008/11/01 괄리자 업로드 허용 파일

업로드 허용 파일

Programming/PHP 2008/11/01 14:25 괄리자
$file = explode(".", $fileName);
$fileExtension = $file[sizeof($file)-1];
$allowedExtension = Array("jpg", "gif", "zip");

if(in_array($fileExtension, $allowedExtension)) {
   echo "true";
} else {
   echo "십생키햐";
}

100% 초보용입니다. +_+
아주 직관적이며 전혀 복잡하지도 않고~
이올린에 북마크하기
2008/11/01 14:25 2008/11/01 14:25