PHP上傳類,分享給大家,不足之處請見諒!
不足之處請高手見諒!
PHP code
/*** 檔案上傳類 kangyangyang 2010-06-07* $loadfile 要上傳的檔案的檔案域* $loadpath 檔案存放路徑* $loadhold 保留檔案原名* $loadsize 檔案大小限制 //預設是2048KB* $loadtype 檔案類型限制 //預設支援 jpg|jpeg|gif|png|txt|rar|zip**/class uploadfile{private $loadfile;private $loadpath;private $loadsize;private $loadtype;private $loadhold = false;private $chkfile = true;private $file_name;private $extend_type;private $set_name;private $set_size;private $set_path;private $set_create_name;private $get_error;//建構函式function __construct($loadfile,$loadpath,$loadhold = false,$loadsize="2097152",$loadtype="jpg|jpeg|gif|png|txt|rar|zip"){ $this->loadfile = $loadfile; $this->loadpath = $loadpath; $this->loadsize = $loadsize; $this->loadtype = $loadtype; $this->loadhold = $loadhold; $this->filecheck();}//檔案上傳function filecheck(){ $filename = $_FILES[$this->loadfile]['name']; //檔案名稱 $filetype = $_FILES[$this->loadfile]['type']; //檔案類型 $filesize = $_FILES[$this->loadfile]['size']; //檔案大小 $filepath = $_FILES[$this->loadfile]['tmp_name']; //臨時檔案 $fileerror= $_FILES[$this->loadfile]['error']; //錯誤碼 if($fileerror <= 0 && $filename != ""){ if($this->loadsize >= $filesize){ $this->set_size = $filesize; $ext = explode(".",$filename); $this->set_name = $ext; $ext_type = strtolower($ext[count($ext)-1]); $this->extend_type = $ext_type; $chk_type = explode("|",$this->loadtype); if(in_array($ext_type,$chk_type)){ $f_path = $this->get_folder(); $this->set_create_name = $createname = time().rand(1,9999); $this->file_name = $createname.".".$ext_type; if($this->loadhold){ $file_path = $f_path.$filename; $this->set_path = $file_path; }else{ $file_path = $f_path.$this->file_name; $this->set_path = $file_path; } $ckfile = move_uploaded_file($filepath,$file_path); if(!$ckfile){ $this->chefile = false; } }else{ $this->chkfile = false; } }else{ $this->chkfile = false; } }else{ $this->chkfile = false; $this->get_error = $fileerror; }}//產生的檔案名稱function get_CreateName(){ if($this->CheckFile()){ if(!$this->loadhold){ return $this->set_create_name; } }}//返迴文件夾路徑function get_folder(){ if($this->CheckFile()){ if(!file_exists($this->loadpath)){ mkdir($this->loadpath,0777,true); chmod($this->loadpath,0777); } return $this->loadpath; }}//副檔名function get_type(){ if($this->CheckFile()){ return $this->extend_type; }}//檔案名稱"不包括副檔名"function get_name(){ if($this->CheckFile()){ $filename = $this->set_name; unset($filename[count($filename)-1]); return implode(".",$filename); }}//返迴文件大小function get_size(){ if($this->CheckFile()){ return $this->set_size; }}//返迴文件全路徑function get_path(){ if($this->CheckFile()){ return $this->set_path; }}//檔案是否上傳成功function CheckFile(){ return $this->chkfile;}//擷取錯誤碼function get_error(){ if($this->CheckFile()){ return $this->get_error; }}}
------解決方案--------------------
不錯,謝謝
------解決方案--------------------
------解決方案--------------------
不錯,收藏
------解決方案--------------------
太牛了,收藏下