php 簡單清析檔案上傳

來源:互聯網
上載者:User

function Uploadfile(){
   //檔案儲存目錄路徑
   $save_path = '../upload/';
   //定義允許上傳的副檔名
   $ext_arr = array('rar','zip');
   //最大檔案大小
   $max_size = 1000000;
   //更改目錄許可權
   @mkdir($save_path, 0777);
   
   
   //有上傳檔案時
   if (empty($_FILES) === false) {
    //原檔案名稱
    $file_name = $_FILES['fileData']['name'];
    //伺服器上臨時檔案名稱
    $tmp_name = $_FILES['fileData']['tmp_name'];
    //檔案大小
    $file_size = $_FILES['fileData']['size'];
    //檢查目錄
    if (@is_dir($save_path) === false) {
     alert("上傳目錄不存在。");
    }
    //檢查目錄寫入權限
    if (@is_writable($save_path) === false) {
     alert("上傳目錄沒有寫入權限。");
    }
    //檢查是否已上傳
    if (@is_uploaded_file($tmp_name) === false) {
     alert("臨時檔案可能不是上傳檔案。");
    }
    //檢查檔案大小
    if ($file_size > $max_size) {
     alert("上傳檔案大小超過限制。");
    }
    //獲得副檔名
    $temp_arr = explode(".", $file_name);
    $file_ext = array_pop($temp_arr);
    $file_ext = trim($file_ext);
    $file_ext = strtolower($file_ext);
    //檢查副檔名
    if (in_array($file_ext, $ext_arr) === false) {
     alert("上傳副檔名是不允許的副檔名。");
    }
    //移動檔案
    if (move_uploaded_file($tmp_name, $file_path) === false) {
     alert("上傳檔案失敗。");
    }
 } 

聯繫我們

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