PHP單檔案上傳原理及上傳函數的封裝

來源:互聯網
上載者:User
伺服器(臨時檔案)——>指定目錄,當檔案進入伺服器時它就是臨時檔案了,這時操作中要用臨時檔案的名稱tmp_name。//在用戶端設定上傳檔案的限制(檔案類型和大小)是不安全的,因為客戶能通過原始碼修改限制,所以在服務端這裡設定限制。//設定編碼為UTF-8,以避免中文亂碼 header('Content-Type:text/html;charset=utf-8');//通過$_FILES接收上傳檔案的資訊$fileInfo = $_FILES['myFile'];function uploadFile($fileInfo,$uploadPath='uploads',$flag=true,$allowExt=array('jpeg','jpg','png','gif'),$maxSize = 2097152){//判斷錯誤號碼,只有為0或者是UPLOAD_ERR_OK,沒有錯誤發生,上傳成功if($fileInfo['error']>0){//注意!錯誤資訊沒有5switch($fileInfo['error']){case 1:$mes= '上傳檔案超過了PHP設定檔中upload_max_filesize選項的值';break;case 2:$mes= '超過了HTML表單MAX_FILE_SIZE限制的大小';break;case 3:$mes= '檔案部分被上傳';break;case 4:$mes= '沒有選擇上傳檔案';break;case 6:$mes= '沒有找到臨時目錄';break;case 7:$mes= '檔案寫入失敗';break;case 8:$mes= '上傳的檔案被PHP擴充程式中斷';break;}exit($mes);}$ext=pathinfo($fileInfo['name'],PATHINFO_EXTENSION);//$allowExt=array('jpeg','jpg','png','gif');//檢測上傳檔案的類型if(in_array($ext,$allowExt)){exit('非法檔案類型');}//檢測上傳文的件大小是否符合規範//$maxSize = 2097152;//2Mif($fileInfo['size']>$maxSize){exit('上傳檔案過大');}//檢測圖片是否為真實的圖片類型//$flag=true;if($flag){if(!getimagesize($fileInfo['tmp_name'])){exit('不是真實的圖片類型');}}//檢測是否是通過HTTP POST方式上傳上來if(!is_uploaded_file($fileInfo['tmp_name'])){exit('檔案不是通過HTTP POST方式上傳上來的');}//$uploadPath='uploads';//如果沒有這個檔案夾,那麼就建立一個if(!file_exists($uploadPath)){mkdir( $uploadPath, 0777, true);chmod( $uploadPath, 0777 );}//新檔案名稱唯一$uniName = md5 ( uniqid( microtime(true),true) ).'.'.$ext;$destination = $uploadPath.'/'.$uniName;//@符號是為了不讓客戶看到錯誤資訊if(! @move_uploaded_file($fileInfo['tmp_name'], $destination )){exit('檔案移動失敗');}//echo '檔案上傳成功';//return array(//'newName'=>$destination,//'size'=>$fileInfo['size'],//'type'=>$fileInfo['type']//);return $destination;}?>


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.