PHP實現單檔案、多檔案上傳 封裝 物件導向實現檔案上傳
檔案上傳配置
客戶端配置
1、表單頁面
2、表單的傳送方式為post
3、新增enctype = "multipart/form-data"
<form action="doAction.php" method="post" enctype="multipart/form-data"> 請上傳檔案<input type="file" name="myFile" /></br> <input type="submit" value="上傳檔案" /></form>
$_FILES中儲存著上傳檔案的資訊
name:上傳檔案的名稱
type:上傳檔案的MIME型別
tmp_name:上傳到伺服器上的臨時檔名
size:上傳檔案的大小
error:上傳檔案錯誤號
有兩種方式:move_uploaded_file 或 copy
//$_FILES 檔案上傳變數print_r($_FILES); //獲取我們需要的內容 $filename=$_FILES['myFile']['name']; $type=$_FILES['myFile']['type']; $tmp_name=$_FILES['myFile']['tmp_name']; $error=$_FILES['myFile']['error']; $size=$_FILES['myFile']['size']; //將伺服器上的臨時檔案移動到指定目錄下 //move_uploaded_file($tmp_name,$destination) //$tmp_name 臨時檔案 $destination 指定目錄下 後面跟檔名 move_uploaded_file($tmp_name, "images/".$filename); //copy($src,$dst) 將檔案複製到指定目錄 複製成功返回true 否則返回false //copy($tmp_name,"images/".$filename);
檔案上傳配置
PHP php.ini 裡面
伺服器端配置:
uploads:
file_uploads = On 支援HTTP上傳
upload_tmp_dir 臨時檔案儲存的目錄
upload_max_filesize 允許上傳檔案的最大值
max_file_uploads 允許一次上傳的最大檔案數
post_max_size POST方式傳送資料最大值
錯誤資訊說明:
UPLOAD_ERR_OK : 值為0,沒有錯誤發生,檔案上傳成功
UPLOAD_ERR_INI_SIZE: 值為1,上傳的檔案超過了php.ini中 upload_max_filesize選項限制的值
UPLOAD_ERR_FORM_SIZE: 值為2,上傳檔案的大小超過了HTML表單中 MAX_FILE_SIZE選項指定的值。
UPLOAD_ERR_PARTIAL: 值為3,檔案只有部分被上傳。
單檔案上傳
<?php //$_FILES 檔案上傳變數 print_r($_FILES); //獲取我們需要的內容 $fileInfo=$_FILES['myFile']; $maxSize = 2097152; //允許的最大值 $allowExt = array('jpeg','jpg','png','gif','wbmp'); $flag=true; //檢測是否為真實圖片型別 //1、判斷錯誤號 if ($fileInfo['error'] == 0){ //判斷上傳檔案的大小 if($fileInfo['size']>$maxSize){ exit('上傳檔案過大'); } //in_array() 函式搜尋陣列中是否存在指定的值。判斷下上傳的型別是不是在允許的範圍內 //$ext 上傳副檔名 //$allowExt 允許上傳檔案型別 //取副檔名 $ext = strtolower(end(explode('.',$fileInfo['name']))) //或者 $ext = pathinfo($fileInfo['name'],PATHINFO_EXTENSION); $ext = pathinfo($fileInfo['name'],PATHINFO_EXTENSION); if(!in_array($ext, $allowExt)){ exit('非法檔案型別'); } //判斷檔案是否是透過HTTP POST方式上傳來的 //is_uploaded_file()函式判斷指定的檔案是否是透過 HTTP POST 上傳的。 if (!is_uploaded_file($fileInfo['tmp_name'])){ exit('檔案不是透過HTTP POST方式上傳上來的'); } //檢測是否為真實的圖片型別 //getimagesize($filename) 得到指定圖片資訊,如果是圖片返回陣列 if($flag){ if (!getimagesize($fileInfo['tmp_name'])){ exit('不是真正的圖片型別'); } } $path = 'images'; //臨時目錄 //如果目錄不存在 //file_exists() 函式檢查檔案或目錄是否存在。 //mkdir() 函式建立目錄。 //chmod() 函式改變檔案模式。 if(!file_exists($path)){ mkdir($path,0777,true); chmod($path, 0777); } //確保檔名唯一,防止重名產生覆蓋 $uniName=md5(uniqid(microtime(true),true)).'.'.$ext; $destination=$path.'/'.$uniName; if (move_uploaded_file($fileInfo['tmp_name'], $destination)){ echo '檔案上傳成功'; }else { echo '檔案上傳失敗'; } }else{ switch ($fileInfo['error']){ case 1: echo '上傳檔案超過了PHP配置檔案中upload_max_filesize選項的值'; break; case 2: echo '超過了表單MAX_FILE_SIZE限制的大小'; break; case 3: echo '檔案部分被上傳'; break; case 4: echo '沒有選擇上傳檔案'; break; case 6: echo '沒有找到臨時目錄'; break; case 7: case 8: echo '系統錯誤'; break; } } ?>
單檔案上傳封裝
封裝檔案upload.func.php:
<?php //$fileInfo = $_FILES['myFile']; function uploadFile($fileInfo,$allowExt=array('jpeg','jpg','gif','png'), $path = 'images',$flag = true,$maxSize = 2097152){ //判斷錯誤號 if ($fileInfo['error']>0){ switch ($fileInfo['error']){ case 1: $mes = '上傳檔案超過了PHP配置檔案中upload_max_filesize選項的值'; break; case 2: $mes = '超過了表單MAX_FILE_SIZE限制的大小'; break; case 3: $mes = '檔案部分被上傳'; break; case 4: $mes = '沒有選擇上傳檔案'; break; case 6: $mes = '沒有找到臨時目錄'; break; case 7: case 8: $mes = '系統錯誤'; break; } echo ( $mes ); return false; } //判斷檔案型別 //$allowExt = array('jpeg','jpg','png','gif','wbmp'); $ext = pathinfo ( $fileInfo ['name'], PATHINFO_EXTENSION ); //is_array() 函式用於檢測變數是否是一個陣列。 if (!is_array($allowExt)){ exit('系統錯誤,請使用陣列的方式'); } if (! in_array ( $ext, $allowExt )) { exit ( '非法檔案型別' ); } //判斷檔案大小 //$maxSize = 2097152; //2M if ($fileInfo['size']>$maxSize){ exit('上傳檔案過大'); } //判斷檔案是否是真實圖片 //$flag = true; //var_dump(getimagesize($fileInfo['tmp_name'])); if($flag){ if(!getimagesize($fileInfo['tmp_name'])){ exit('不是真實圖片型別'); } } //判斷是否是HTTP POST請求方式上傳 if (!is_uploaded_file($fileInfo['tmp_name'])){ exit('檔案不是透過HTTP POST方式上傳上來的'); } //判斷臨時目錄,建立目錄 //$path = 'images'; //如果目錄不存在 //file_exists() 函式檢查檔案或目錄是否存在。 //mkdir() 函式建立目錄。 //chmod() 函式改變檔案模式。 if (!file_exists($path)){ mkdir($path,0777,true); chmod($path,0777); } //確保檔名唯一,防止重名產生覆蓋 $uniName = md5(uniqid(microtime(true),true)).'.'.$ext; $destination = $path.'/'.$uniName; //指定目錄下 //判斷是否上傳成功 if (!@move_uploaded_file($fileInfo['tmp_name'], $destination)){ exit('檔案上傳失敗'); } //echo '檔案上傳成功'; // return array( // 'newName'=>$destination, // 'size'=>$fileInfo['size'], // 'type'=>$fileInfo['type'] // ); return $destination; }?>
處理檔案:doActionfunc.php
<?php header('content-type:text/html;charset=utf-8'); include_once ('upload.func.php'); $fileInfo = $_FILES['myFile']; print_r($fileInfo); // $newName = uploadFile($fileInfo); // echo $newName; // $newName=uploadFile($fileInfo,'imooc'); // echo $newName; //$allowExt='txt'; $allowExt=array('jpeg','jpg','png','gif','html','txt','css'); $newName=uploadFile($fileInfo,$allowExt,'img',true); echo $newName;?>
HTML頁面
<!DOCTYPE> <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title> 上傳</title><meta name="keywords" content="" /> <meta name="description" content="" /> <link href="default.css" rel="stylesheet" type="text/css" /> </head> <body> <form action="doActionfunc.php" method="post" enctype="multipart/form-data"> 請選擇您要上傳的檔案:<input type="file" name='myFile' /> <input type="submit" value="上傳檔案" /> </form></body></html>
多個單檔案上傳
<!-- 多檔案 單檔案 上傳封裝函式 --> <?php /** * 構建上傳檔案資訊 * @return unknown * 判斷是多個檔案還是單個檔案 */ function getFiles(){ $i = 0; foreach ($_FILES as $file){ if (is_string($file['name'])){ $files[$i] = $file; $i++; } elseif (is_array($file['name'])){ foreach ($file['name'] as $key=>$val){ $files[$i]['name'] = $file['name'][$key]; $files[$i]['type'] = $file['type'][$key]; $files[$i]['tmp_name'] = $file['tmp_name'][$key]; $files[$i]['error'] = $file['error'][$key]; $files[$i]['size'] = $file['size'][$key]; $i++; } } } return $files; } function uploadFile($fileInfo,$path='./uploads',$flag=true,$maxSize=1048576,$allowExt=array('jpeg','jpg','png','gif')){ //判斷錯誤號 if($fileInfo['error']===UPLOAD_ERR_OK){ //檢測上傳得到小 if($fileInfo['size']>$maxSize){ $res['mes']=$fileInfo['name'].'上傳檔案過大'; } $ext=getExt($fileInfo['name']); //檢測上傳檔案的檔案型別 if(!in_array($ext,$allowExt)){ $res['mes']=$fileInfo['name'].'非法檔案型別'; } //檢測是否是真實的圖片型別 if($flag&&in_array($ext,$allowExt)){ if(!getimagesize($fileInfo['tmp_name'])){ $res['mes']=$fileInfo['name'].'不是真實圖片型別'; } } //檢測檔案是否是透過HTTP POST上傳上來的 if(!is_uploaded_file($fileInfo['tmp_name'])){ $res['mes']=$fileInfo['name'].'檔案不是透過HTTP POST方式上傳上來的'; } if(!empty($res)){return $res;} //$path='./uploads'; if(!file_exists($path)){ mkdir($path,0777,true); chmod($path,0777); } $uniName=getUniName(); $destination=$path.'/'.$uniName.'.'.$ext; if(!move_uploaded_file($fileInfo['tmp_name'],$destination)){ $res['mes']=$fileInfo['name'].'檔案移動失敗'; } $res['mes']=$fileInfo['name'].'上傳成功'; $res['dest']=$destination; return $res; }else{ //匹配錯誤資訊 switch ($fileInfo ['error']) { case 1 : $res['mes'] = '上傳檔案超過了PHP配置檔案中upload_max_filesize選項的值'; break; case 2 : $res['mes'] = '超過了表單MAX_FILE_SIZE限制的大小'; break; case 3 : $res['mes'] = '檔案部分被上傳'; break; case 4 : $res['mes'] = '沒有選擇上傳檔案'; break; case 6 : $res['mes'] = '沒有找到臨時目錄'; break; case 7 : case 8 : $res['mes'] = '系統錯誤'; break; } return $res; } }?>
<?php header('content-type:text/html;charset=utf-8'); include_once ('common.func.php'); include_once ('upload.func1.php'); $files=getFiles(); foreach ($files as $fileInfo){ $res=uploadFile($fileInfo); echo $res['mes'],'<br/>'; $uploadFiles[]=$res['dest']; } $uploadFiles=array_values(array_filter($uploadFiles)); print_r($uploadFiles);?>
<!DOCTYPE> <html> <head ><meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title> 上傳 </title> <meta name="keywords" content="" /> <meta name="description" content="" /> <link href="default.css" rel="stylesheet" type="text/css" /> </head><body> <form action="doAction1func.php" method="post" enctype="multipart/form-data"> 請選擇您要上傳的檔案:<input type="file" name='myFile1' /><br> 請選擇您要上傳的檔案:<input type="file" name='myFile[]' /><br> 請選擇您要上傳的檔案:<input type="file" name='myFile[]' /><br> 請選擇您要上傳的檔案:<input type="file" name='myFile[]' multiple="multiple" /><br> <input type="submit" value="上傳檔案" /> </form></body></html>
物件導向實現檔案上傳
<?php class upload{ protected $fileName; protected $maxSize; protected $allowMime; protected $allowExt; protected $uploadPath; protected $imgFlag; protected $fileInfo; protected $error; protected $ext; /** * @param string $fileName * @param string $uploadPath * @param string $imgFlag * @param number $maxSize * @param array $allowExt * @param array $allowMime */ public function __construct($fileName='myFile',$uploadPath='./uploads' , $imgFlag=true,$maxSize=5242880,$allowExt=array('jpeg','jpg','png','gif'), $allowMime=array('image/jpeg','image/png','image/gif')){ $this->fileName=$fileName; $this->maxSize=$maxSize; $this->allowMime=$allowMime; $this->allowExt=$allowExt; $this->uploadPath=$uploadPath; $this->imgFlag=$imgFlag; $this->fileInfo=$_FILES[$this->fileName]; } /** * 檢測上傳檔案是否出錯 * @return boolean */ protected function checkError(){ if(!is_null($this->fileInfo)){ if($this->fileInfo['error']>0){ switch($this->fileInfo['error']){ case 1: $this->error='超過了PHP配置檔案中upload_max_filesize選項的值'; break; case 2: $this->error='超過了表單中MAX_FILE_SIZE設定的值'; break; case 3: $this->error='檔案部分被上傳'; break; case 4: $this->error='沒有選擇上傳檔案'; break; case 6: $this->error='沒有找到臨時目錄'; break; case 7: $this->error='檔案不可寫'; break; case 8: $this->error='由於PHP的擴充套件程式中斷檔案上傳'; break; } return false; } else { return true; } }else{ $this->error='檔案上傳出錯'; return false; } } /** * 檢測上傳檔案的大小 * @return boolean */ protected function checkSize(){ if($this->fileInfo['size']>$this->maxSize){ $this->error='上傳檔案過大'; return false; } return true; } /** * 檢測副檔名 * @return boolean */ protected function checkExt(){ $this->ext=strtolower(pathinfo($this->fileInfo['name'],PATHINFO_EXTENSION)); if(!in_array($this->ext,$this->allowExt)){ $this->error='不允許的副檔名'; return false; } return true; } /** * 檢測檔案的型別 * @return boolean */ protected function checkMime(){ if(!in_array($this->fileInfo['type'],$this->allowMime)){ $this->error='不允許的檔案型別'; return false; } return true; } /** * 檢測是否是真實圖片 * @return boolean */ protected function checkTrueImg(){ if($this->imgFlag){ if(!@getimagesize($this->fileInfo['tmp_name'])){ $this->error='不是真實圖片'; return false; } return true; } } /** * 檢測是否透過HTTP POST方式上傳上來的 * @return boolean */ protected function checkHTTPPost(){ if(!is_uploaded_file($this->fileInfo['tmp_name'])){ $this->error='檔案不是透過HTTP POST方式上傳上來的'; return false; } return true; } /** *顯示錯誤 */ protected function showError(){ exit('<span style="color:red">'.$this->error.'</span>'); } /** * 檢測目錄不存在則建立 */ protected function checkUploadPath(){ if(!file_exists($this->uploadPath)){ mkdir($this->uploadPath,0777,true); } } /** * 產生唯一字串 * @return string */ protected function getUniName(){ return md5(uniqid(microtime(true),true)); } /** * 上傳檔案 * @return string */ public function uploadFile(){ if($this->checkError() &&$this->checkSize() &&$this->checkExt( )&&$this->checkMime() &&$this->checkTrueImg() &&$this->checkHTTPPost()){ $this->checkUploadPath(); $this->uniName=$this->getUniName(); $this->destination=$this->uploadPath.'/'.$this->uniName.'.'.$this->ext; if(@move_uploaded_file($this->fileInfo['tmp_name'], $this->destination)){ return $this->destination; }else{ $this->error='檔案移動失敗'; $this->showError(); } }else{ $this->showError(); } } }
<?php header('content-type:text/html;charset=utf-8'); require_once 'upload.class.php';$upload=new upload('myFile1','imooc'); $dest=$upload->uploadFile();echo $dest;
<!DOCTYPE><html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>Insert title here</title></head><body> <form action="doAction6.php" method="post" enctype="multipart/form-data"> 請選擇您要上傳的檔案:<input type="file" name='myFile1' /> <input type="submit" value="上傳檔案" /> </form></body></html>
原文作者:薯條_9
原文連結:https://www.cnblogs.com/alice-shan/p/9312185.html
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/4830/viewspace-2821623/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- HttpFileCollection 實現多檔案上傳HTTP
- PHP實現圖片(檔案)上傳PHP
- ajax實現檔案上傳
- php檔案上傳之多檔案上傳PHP
- AngularJS實現的檔案檔案上傳AngularJS
- SpringMVC 單檔案上傳與多檔案上傳SpringMVC
- struts動態多檔案上傳實現
- SpringMVC多個檔案上傳實現SpringMVC
- 通過配置檔案(.htaccess)實現檔案上傳
- 檔案上傳原理和實現
- springmvc實現檔案上傳SpringMVC
- Jsp+Servlet實現檔案上傳下載(一)--檔案上傳JSServlet
- JavaScript+PHP實現影片檔案分片上傳JavaScriptPHP
- 配置php.ini實現PHP檔案上傳功能PHP
- php多個檔案上傳PHP
- SpringMVC實現多檔案上傳原始碼SpringMVC原始碼
- 使用java的MultipartFile實現layui官網檔案上傳實現全部示例,java檔案上傳JavaUI
- php單個檔案上傳PHP
- 單個檔案上傳和批量檔案上傳
- PHP上傳檔案PHP
- PHP 檔案上傳PHP
- Java檔案上傳如何實現呢?Java
- 關於node實現檔案上傳
- 使用Spring實現上傳檔案Spring
- Spring mvc檔案上傳實現SpringMVC
- JS實現檔案自動上傳JS
- SpringMVC檔案上傳下載(單檔案、多檔案)SpringMVC
- js實現帶上傳進度的檔案上傳JS
- ajax利用FormData、FileReader實現多檔案上傳php獲取ORMPHP
- 【node】檔案上傳功能簡易實現
- 自定義檔案上傳功能實現方法
- Feign實現檔案上傳下載
- node中間層實現檔案上傳
- Web上傳檔案的原理及實現Web
- Windows Phone7 實現檔案上傳Windows
- PHP 分片上傳檔案PHP
- PHP ftp上傳檔案PHPFTP
- PHP--檔案上傳PHP