코드 복사 코드는 다음과 같습니다.
/* 이미지 업로드 클래스 JPG 형식의 이미지만*/
class uploadFile
{
var $inputName; //입력 이름
var $fileName; //파일 이름
var $fileProperty; //파일 속성
var $fileSize=2097152 ; / /파일 크기 제한, 2M
var $filePath="upload/"; //파일 저장 경로
function uploadFile($inputName){
$this->inputName=$inputName; >$ this->getName(); //새 이름 가져오기
$this->fileSave()
}
//임의의 이름
private function getName(){
$ this->fileName=date("YmdHms").rand(0,9).$this->getProperty()
}
//파일 속성, 접미사 반환
비공개 함수 getProperty(){
if($_FILES[$this->inputName]["type"]=="image/pjpeg"||$_FILES[$this->inputName]["type"]== "image/jpeg"){
return ".jpg";
}else{
exit("잘못된 파일 형식")
}
}
//파일 저장
비공개 함수 fileSave(){
if($_FILES[$this->inputName]["size"]>$this->fileSize){
exit("파일이 너무 큽니다. 최대 제한은 ".$this->fileSize."bytes");
}
if(!file_exists($this->filePath)){
mkdir($this->filePath) ; //파일 저장 디렉터리가 없으면 생성하세요.
}
move_uploaded_file($_FILES[$this->inputName]["tmp_name"],
$this->filePath. $this- >fileName)
}
}
if($_GET['action']=="fileSave"){
$f=new uploadFile("file")
echo ' 업로드가 완료되었습니다. ;a href ="'.$f->filePath.$f->fileName.'">찾아보기'
}else{
echo '