php檔案上傳類與詳解(1/2)

來源:互聯網
上載者:User

php教程 配置中的 upload_tmp_dir 這個參數進行比較,如果檔案在這個目錄下面,那麼 move_uploaded_file 才會進行移動操作。而且這個比較是大小寫敏感,/ 在windows 下面也是不一樣的。而在php設定檔解析的時候,會調用一個realpath 函數,也就是是說,你在move_uploaded_file 之前,


必須對$file['tmp_name'] = realpath($file['tmp_name']); realpath 一下。


    還有一種情況,大家要注意,就是 move_uploaded_file  如果配置成一個無法訪問的路徑,那麼你不管怎麼處理,move_uploaded_file 總是不能成功移動檔案。


在檔案上傳的時候,用 move_uploaded_file 這個函數不能移動檔案,而用copy 或者 rename 確是可以的。


我也一直很困惑。在文檔上,說的比較模糊,就是 move_uploaded_file 這個函數,加了一步檢查,檢查這個檔案是否是有 http post 上傳的,


下面我在網上找到一個檔案上傳類

**檔案上傳類**/
 
 

class upload_file
 {
  /**聲明**/
  var $upfile_type,$upfile_size,$upfile_name,$upfile;
  var $d_alt,$extention_list,$tmp,$arri;
  var $datetime,$date;
  var $filestr,$size,$ext,$check;
  var $flash_directory,$extention,$file_path,$base_directory;
  var $url; //檔案上傳成功後跳轉路徑;
 
  function upload_file()
  {
   /**建構函式**/
   $this->set_url("index.php");          //初始化上傳成功後跳轉路徑;
   $this->set_extention();             //初始化副檔名列表;
   $this->set_size(50);              //初始化上傳檔案kb限制;
   $this->set_date();               //設定目錄名稱;
   $this->set_datetime();             //設定檔案名稱首碼;
   $this->set_base_directory("attachmentfile");  //初始設定檔案上傳根目錄名,可修改!;
  }
 
  /**檔案類型**/
  function set_file_type($upfile_type)
  {
   $this->upfile_type = $upfile_type;       //取得檔案類型;
  }
 
  /**獲得檔案名稱**/
  function set_file_name($upfile_name)
  {
   $this->upfile_name = $upfile_name;       //取得檔案名稱;
  }
 
  /**獲得檔案**/
  function set_upfile($upfile)
  {
   $this->upfile = $upfile;            //取得檔案在服務端儲存的臨時檔案名稱;
  }
   
  /**獲得檔案大小**/
  function set_file_size($upfile_size)
  {
   $this->upfile_size = $upfile_size;       //取得檔案尺寸;
  }
 
  /**設定檔案上傳成功後跳轉路徑**/
  function set_url($url)
  {
   $this->url = $url;               //設定成功上傳檔案後的跳轉路徑;
  }
 
  /**獲得副檔名**/
  function get_extention()
  {
    $this->extention = preg_replace('/.*.(.*[^.].*)*/iu','1',$this->upfile_name); //取得副檔名;
  }
     
  /**設定檔案名稱**/
  function set_datetime()
  {
   $this->datetime = date("ymdhis");        //按時間組建檔案名;
  }
 
  /**設定目錄名稱**/
  function set_date()
  {
   $this->date = date("y-m-d");          //按日期組建目錄名稱;
  }
 
  /**初始化允許上傳檔案類型**/
  function set_extention()
  {
   $this->extention_list = "doc|xls|ppt|avi|txt|gif|jpg|jpeg|bmp|png"; //預設允許上傳的副檔名稱;
  } 
 
  /**設定最大上傳kb限制**/
  function set_size($size)
  {
   $this->size = $size;              //設定最大允許上傳的檔案大小;
  }
 
  /**初始設定檔案儲存根目錄**/
  function set_base_directory($directory)
  {
   $this->base_directory = $directory; //組建檔案儲存根目錄;
  }
 
  /**初始設定檔案儲存子目錄**/
  function set_flash_directory()
  {
   $this->flash_directory = $this->base_directory."/".$this->date; //組建檔案儲存子目錄;
  }
 
  /**錯誤處理**/
  function showerror($errstr="未知錯誤!"){
   echo "<script language=網頁特效>alert('$errstr');location='javascript:history.go(-1);';</script>";
   exit();
  }
 
  /**跳轉**/
  function go_to($str,$url)
  {
   echo "<script language='javascript'>alert('$str');location='$url';</script>";
   exit();
  }

  /**如果根目錄沒有建立則建立檔案儲存體目錄**/
  function mk_base_dir()
  {
   if (! file_exists($this->base_directory)){   //檢測根目錄是否存在;
    @mkdir($this->base_directory,0777);     //不存在則建立;
   }
  }

  /**如果子目錄沒有建立則建立檔案儲存體目錄**/
  function mk_dir()
  {
   if (! file_exists($this->flash_directory)){   //檢測子目錄是否存在;
    @mkdir($this->flash_directory,0777);     //不存在則建立;
   }
  } 
 
  /**以數組的形式獲得分解後的允許上傳的檔案類型**/
  function get_compare_extention()
  {
   $this->ext = explode("|",$this->extention_list);//以"|"來分解預設副檔名;
  }
 
  /**檢測副檔名是否違規**/
  function check_extention()
  {
   for($i=0;each($this->ext);$i++)            //遍曆數組;
   {
    if($this->ext[$i] == strtolower($this->extention)) //比較副檔名是否與預設允許的副檔名相符;
    {
     $this->check = true;               //相符則標記;
     break;
    }
   }
   if(!$this->check){$this->showerror("正確的副檔名必須為".$this->extention_list."其中的一種!");}
   //不符則警告
  }
 
  /**檢測檔案大小是否超標**/
  function check_size()
  {
   if($this->upfile_size > round($this->size*1024))     //檔案的大小是否超過了預設的尺寸;
   {
    $this->showerror("上傳附件不得超過".$this->size."kb"); //超過則警告;
   }
  }

  /**檔案完整訪問路徑**/
  function set_file_path()
  {
   $this->file_path = $this->flash_directory."/".$this->datetime.".".$this->extention; //組建檔案完整訪問路徑;
  }
 
  /**上傳檔案**/
  function copy_file()
  {
   if(copy($this->upfile,$this->file_path)){        //上傳檔案;
    print $this->go_to("檔案已經成功上傳!",$this->url);  //上傳成功;
   }else {
    print $this->showerror("意外錯誤,請重試!");     //上傳失敗;
   }
  }
 
  /**完成儲存**/
  function save()
  {
   $this->set_flash_directory();  //初始設定檔案上傳子目錄名;
   $this->get_extention();     //獲得副檔名;
   $this->get_compare_extention(); //以"|"來分解預設副檔名;
   $this->check_extention();    //檢測副檔名是否違規;
   $this->check_size();      //檢測檔案大小是否超限;  
   $this->mk_base_dir();      //如果根目錄不存在則建立;
   $this->mk_dir();        //如果子目錄不存在則建立;
   $this->set_file_path();     //組建檔案完整訪問路徑;
   $this->copy_file();       //上傳檔案;
  }
 
 }

首頁 1 2 末頁
相關文章

聯繫我們

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