PHP實現的多檔案上傳類及用法樣本_php技巧

來源:互聯網
上載者:User

本文執行個體講述了PHP實現的多檔案上傳類及用法。分享給大家供大家參考,具體如下:

1、upFiles.css.php 檔案

<?phpclass UploadFiles{ private $maxsize = '1000000'; //允許上傳檔案最大長度 private $allowtype = array('jpg','png','gif','jpeg');//允許上傳檔案類型 private $israndfile = true;//是否隨機檔案名稱 private $filepath;//上傳路徑 private $originName;//上傳的源檔案 private $tmpfileName;//臨時檔案名稱 private $newfileName;//新檔案名稱 private $fileSize;//檔案大小 private $fileType;//檔案類型 private $errorNum = 0;//錯誤號碼 private $errorMessg = array();//錯誤訊息 //對成員初始化 function __construct($options = array()){ foreach($options as $key=>$val){  $key = strtolower($key);  //查看傳進來的數組裡下標是否與成員屬性相同  //print_r(array_keys(get_class_vars(get_class($this))));  if(!in_array($key,array_keys(get_class_vars(get_class($this))))){  continue;  }else{  $this->setOption($key,$val);  } } } private function setOption($key,$val){   $this->$key = $val; //echo $this->errorNum."<br>"; } //檢查檔案上傳路徑 private function checkfilePath(){ //echo $this->filepath; if(empty($this->filepath)){  $this->setOption('errorNum',"-5");  return false; } if(!file_exists($this->filepath) || !is_writable($this->filepath)){  if(!@mkdir($this->filepath,0755)){  $this->setOption('errorNum','-4');  return false;  } } return true; } //擷取錯誤資訊 private function getError(){ $str = "上傳檔案{$this->originName}出錯---"; switch($this->errorNum){  case 4; $str .= "沒有檔案被上傳";break;  case 3; $str .= "檔案只被部分上傳";break;  case 2; $str .= "超過檔案表單允許大小";break;  case 1; $str .= "超過php.ini中允許大小";break;  case -1; $str .= "未允許的類型";break;  case -2; $str .= "檔案過大,不能超過".$this->maxsize."個位元組";break;  case -3; $str .= "上傳失敗";break;  case -4; $str .= "建立檔案上傳目錄失敗";break;  case -5; $str .= "必須指定上傳路徑";break;  default; $str .= "未知錯誤"; } return $str."<br>"; } //檢查檔案類型 private function checkfileType(){ //echo $this->fileType; if(!in_array(strtolower($this->fileType),$this->allowtype)){ $this->setOption('errorNum','-1');  return false; }else{  return true; } } //檢查檔案大小 private function checkfileSize(){ if($this->fileSize > $this->maxsize){  $this->setOption('errorNum','-2');  return false; }else{  return true; } } //處理隨機檔案名稱 private function prorandFile(){ $ch = $this->israndfile; if($ch == 'true'){  return true; }else{  return false; } } // private function setFiles($name="",$tmp_name="",$size="",$error=""){ //檢查上傳路徑 if(!$this->checkfilePath()){  //$this->errorMessg = $this->getError();  return false; } //echo $error."<br>"; if($error){ $this->setOption('errorNum',$error);  return false; } $arrstr  = explode('.',$name); $type   = end($arrstr); $this->setOption('originName',$name); $this->setOption('fileSize',$size); $this->setOption('fileType',$type); $this->setOption('tmpfileName',$tmp_name); return true; } //檢查是否有檔案上傳 function checkFile($formname){ if(!@$_FILES[$formname]){  $this->setOption('errorNum',4);  return false; }else{  return true; } } //上傳檔案 function uploadeFile($formname){ if(!$this->checkFile($formname)){  $this->errorMessg = $this->getError();  return false; } $return  = true; $name   = @$_FILES[$formname]['name']; $tmp_name = @$_FILES[$formname]['tmp_name']; $size   = @$_FILES[$formname]['size']; $error  = @$_FILES[$formname]['error']; //$type   = $_FILES[$formname]['type']; if(is_array($name)){  $errors = array();  for($i=0; $i<count($name); $i++){  if($this->setFiles($name[$i],$tmp_name[$i],$size[$i],$error[$i])){   if(!$this->checkfileSize() || !$this->checkfileType()){   $errors[] = $this->getError();   $return = false;   }  }else{   $errors[] = $this->getError();   $return = false;  }  if(!$return) $this->setFiles();  }  if($return){  $newfileN = array();  for($i=0; $i<count($name); $i++){   if($this->setFiles($name[$i],$tmp_name[$i],$size[$i],$error[$i])){   if(!$this->copyFile()){    $errors[] = $this->getError();    $return = false;   }else{    $newfileN[] = $this->newfileName;   }   }   $this->newfileName = $newfileN;  }  }  //print_r($errors);  $this->errorMessg = $errors;  //echo $errors;  return $return; }else{  if($this->setFiles($name,$tmp_name,$size,$error)){  $return = true;  if($error) var_dump($error);  if($this->checkfileSize() && $this->checkfileType()){  }else{   $return = false;  }  }else{  $return = false;  }  if(!$return){  $this->errorMessg = $this->getError();  }  return $return; } } //擷取上傳後的檔案名稱 function getnewFile(){  return $this->newfileName; } //把檔案拷貝到指定的路徑 function copyFile(){ $filepath = rtrim($this->filepath,'/')."/"; if(!$this->errorNum){  if($this->prorandFile()){   $this->newfileName = date('Ymdhis').rand(1000,9999).".".$this->fileType;  }else{   $this->newfileName = $this->originName;  }  if(!move_uploaded_file($this->tmpfileName,$filepath.$this->newfileName)){  $this->setOption('errorNum',-3);  return false;  }else{  return true;  } }else{  return false; } } //上傳錯誤後返回的訊息 function gteerror(){  $err = $this->errorMessg; return $err; } }?>

2、使用方法

uploade.php 檔案:

<?php//print_r($_FILES['spic']);header('Content-Type:text/html;charset=utf-8');//if(@$_FILES['spic'])echo "ddddddddd";;include('upFiles.css.php');$upfile = new UploadFiles(array('filepath'=>'./upload','allowtype'=>array('php','bmp','gif','jpg','png'),'israndfile'=>true,'maxsize'=>'1000000'));if($upfile ->uploadeFile('spic')){ $arrfile = $upfile ->getnewFile(); foreach($arrfile as $v){ echo $v,"<br/>"; } echo "上傳成功!";}else{ $err = $upfile ->gteerror(); if(is_array($err)){ foreach($err as $v1){  echo $v1,"<br/>"; } }else{ echo $err; } //var_dump($err);}//var_dump($upfile);?>

HTML 檔案:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>無標題文檔</title><script type="text/javascript">function Check(){ //alert('dddd'); for(i=1; i<9; i++){ if(document.getElementById('v'+i).value == ''){  document.getElementById('v'+i).name = 'uu'; } }}</script></head><body><form name="upfile" action="uploade.php" method="post" enctype="multipart/form-data"><input type="file" name="spic[]" id="v1" /><br/><input type="file" name="spic[]" id="v2" /><br/><input type="file" name="spic[]" id="v3" /><br/><input type="file" name="spic[]" id="v4" /><br/><input type="file" name="spic[]" id="v5" /><br/><input type="file" name="spic[]" id="v6" /><br/><input type="file" name="spic[]" id="v7" /><br/><input type="file" name="spic[]" id="v8" /><br/><input type="submit" name="sub" value="提交" onclick="return Check()" /><input type="reset" name="res" value="重填" /></form></body></html>

更多關於PHP相關內容感興趣的讀者可查看本站專題:《php檔案操作總結》、《PHP運算與運算子用法總結》、《PHP網路編程技巧總結》、《PHP基本文法入門教程》、《php操作office文檔技巧總結(包括word,excel,access,ppt)》、《php日期與時間用法總結》、《php物件導向程式設計入門教程》、《php字串(string)用法總結》、《php+mysql資料庫操作入門教程》及《php常見資料庫操作技巧匯總》

希望本文所述對大家PHP程式設計有所協助。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.