PHPはファイルアップロードのダウンロード例を実現します。


この文章はPHPのファイルアップロードとダウンロードを紹介しました。今は皆さんに共有します。参考にしてください。一緒に小編についてきてみましょう。
一、アップロード原理と構成
1.1の原理
クライアントファイルをサーバ端にアップロードし、サーバ端のファイル(仮ファイル)を指定ディレクトリに移動すればいいです。
1.2クライアント構成
必要なもの:フォームページ(アップロードファイルを選択);
具体的には、送信方式はPOSTで、enctype=「multiiprt/form-data」属性を追加して、両方が不可欠です(ただし、長所と短所が共存しています。ここではアップロードの方式とアップロードのファイルの後の呼び出しなども限定されています。後で言います)

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<form action="doAction.php" method="post" enctype="multipart/form-data">
          :
<input type="file" name="myFile" /><br/>
<input type="submit" value="  "/>
</form>
<?php

?>
</body>
</html>

まずフォームページです。フロントエンドの問題を自動的に無視してください。キーはformの属性です。また、inputではtype=「file」という点が使われています。
そしてドアクション

<?php
//$_FILES:      
//print_r($_FILES);
$filename=$_FILES['myFile']['name'];
$type=$_FILES['myFile']['type'];
$tmp_name=$_FILES['myFile']['tmp_name'];
$size=$_FILES['myFile']['size'];
$error=$_FILES['myFile']['error'];

//                 
//   move_upload_file($tmp_name,$destination)
//move_uploaded_file($tmp_name, "uploads/".$filename);//         ,    
//   copy($src,$des)
//             ,    false
//copy($tmp_name, "copies/".$filename);
//  ,                ,            ,       
copy($tmp_name, "copies/".$filename);
move_uploaded_file($tmp_name, "uploads/".$filename);
//    ,  move            ;copy  copy,      

//  ,          ,                 
if ($error==0) {
  echo "    !";
}else{
  switch ($error){
    case 1:
      echo "           ,   2M    ";
      break;
    case 2:
      echo "      ,     20      !";
      break;
    case 3:
      echo "        ,     !";
      break;
    case 4:
      echo "       !";
      break;
    case 5:
      echo "     0";
      break;
  }
}

まずprintをr($u)FILES)この情報を見てください。

Array
(
  [myFile] => Array
    (
      [name] =>   _  .doc
      [type] => application/msword
      [tmp_name] => D:\wamp\tmp\php1D78.tmp
      [error] => 0
      [size] => 75776
    )

)

だから得られたのは二次元配列です。どうやって使うべきですか?基本的なものです。
基本は一目でわかるもので、くどくどしないで、肝心な点は二つがあります。name一時ファイル名;errorエラーメッセージ(コード、後に利用可能)
ここでドアクションの後ろの部分を見て、エラーメッセージを利用してユーザーにフィードバックします。なぜエラーを報告したのかとエラーメッセージは何ですか?
1.3エラーについて
--エラーの原因を報告します
基本的にはサーバーのファイルアップロードに関する設定を超えていますか?
まずアップロードを考えて何を使いましたか?POST、アップロード
だからphp.iniの中でこのようないくつかの項目を探します。
file_upload:On
upload_tmp_dir=――一時ファイル保存ディレクトリ;
upload_max_filesize=2 M
max_file_uploads=20――一度にアップロードできる最大のファイル数(上記との違いに注意してください。sizeがありますか?妄想しないでください。)
post_max_size=8 M-post方式でデータを送る最大値
その他関連配置
max_exectution_time=-1――最大実行時間は、プログラムがサーバのリソースを占有しにくいことを避ける;
max_input_time=60
max_input_nesting.level=64――入れ子深さを入力します。
memorylimit=128 M――最大シングルスレッドの独立メモリ使用量
つまり資源に関する配置です。
--エラー番号
以下はhttp://blog.sina.com.cn/s/blog_3 cdfaea 201008 utf.から。
  • UPLOAD_ERR_OK             値:0;エラーが発生しませんでした。ファイルのアップロードに成功しました。
  • UPLOAD_ERR_INI_SIZE      値:1;アップロードされたファイルはphp.iniの中のupload_を超えました。max_filesizeオプション制限の値です。
  • UPLOAD_ERR_FORMSIZE  値:2;アップロードファイルのサイズがHTMLフォームのMAX_を超えています。FILE_SIZEオプションで指定された値です。
  • UPLOAD_ERR_PARTAL          値:3;ファイルは一部だけアップロードされます。
  • UPLOAD_ERR_NOの_FILE          値:4;アップロードされたファイルがありません。 
  • 注意:このエラー情報は第一歩アップロードされた情報です。つまり、一時フォルダにアップロードされた場合、moveやcopyではありません。
    二、アップロードに関する制限
    2.1クライアント制限
    
    <form action="doAction2.php" method="post" enctype="multipart/form-data">
    <input type="hidden" name="MAX_FILE_SIZE" value="101321" />
    
    アップロードするファイルを選択してください:
    
    <input type="file" name="myFile" accept="image/jpeg,image/gif,text/html"/><br/>
    <input type="submit" value="  "/>
    </form>
    ここではinputの属性でアップロードファイルのサイズとタイプを制限していますが、個人的な感想としては、htmlコードは「見える」ということです。二、よく効きません。(原因は見つけられませんでしたが、一つ目は諦めたいので、知っていたらいいです。
     2.2サーバ側制限
    主に大きさとタイプを制限して、更に方式があります。
    
    <?php
    header('content-type:text/html;charset=utf-8');
    //    ,      
    $fileinfo=$_FILES["myFile"];//    
    $filename=$fileinfo["name"];
    $tmp_name=$fileinfo["tmp_name"];
    $size=$fileinfo["size"];
    $error=$fileinfo["error"];
    $type=$fileinfo["type"];
    
    //        
    $maxsize=10485760;//10M,10*1024*1024
    $allowExt=array('jpeg','jpg','png','tif');//         (   
    $ext=pathinfo($filename,PATHINFO_EXTENSION);//          
    
    //    
    $path="uploads";
    if (!file_exists($path)) {  //      ,     
      mkdir($path,0777,true);
      chmod($path, 0777);
    }
    //$destination=$path."/".$filename;
    //        !              
    $uniName=md5(uniqid(microtime(true),true)).$ext;//md5  ,uniqid    id,microtime   
    
    
    if ($error==0) {
      if ($size>$maxsize) {
        exit("      !");
      }
      if (!in_array($ext, $allowExt)) {
        exit("      ");
      }
      if (!is_uploaded_file($tmp_name)) {
        exit("      ,   post  ");
      }
      if (@move_uploaded_file($tmp_name, $uniName)) {//@     ,        
        echo "  ".$filename."    !";
      }else{
        echo "  ".$filename."    !";
      }
      //         (             
      if (!getimagesize($tmp_name)) {//getimagesize      ,    false
        exit("         ");
      }
    
    }else{
      switch ($error){
        case 1:
          echo "           ,   2M    ";
          break;
        case 2:
          echo "      ,     20      !";
          break;
        case 3:
          echo "        ,     !";
          break;
        case 4:
          echo "       !";
          break;
        case 7:
          echo "       ";
          break;
      }
    }
      ,        ,          
    
    2.3パッケージ
    関数
    
    <?php
    function uploadFile($fileInfo,$path,$allowExt,$maxSize){
    
    $filename=$fileInfo["name"];
    $tmp_name=$fileInfo["tmp_name"];
    $size=$fileInfo["size"];
    $error=$fileInfo["error"];
    $type=$fileInfo["type"];
    
    //        
    
    $ext=pathinfo($filename,PATHINFO_EXTENSION);
    
    //    
    if (!file_exists($path)) {  
      mkdir($path,0777,true);
      chmod($path, 0777);
    }
    $uniName=md5(uniqid(microtime(true),true)).'.'.$ext;
    $destination=$path."/".$uniName;
    
    
    if ($error==0) {
      if ($size>$maxSize) {
        exit("      !");
      }
      if (!in_array($ext, $allowExt)) {
        exit("      ");
      }
      if (!is_uploaded_file($tmp_name)) {
        exit("      ,   post  ");
      }
      //         (             
      if (!getimagesize($tmp_name)) {//getimagesize      ,    false
        exit("         ");
      }
      if (@move_uploaded_file($tmp_name, $destination)) {//@     ,        
        echo "  ".$filename."    !";
      }else{
        echo "  ".$filename."    !";
      }
      
    
    }else{
      switch ($error){
        case 1:
          echo "           ,   2M    ";
          break;
        case 2:
          echo "      ,     20      !";
          break;
        case 3:
          echo "        ,     !";
          break;
        case 4:
          echo "       !";
          break;
        case 7:
          echo "       ";
          break;
      }
    }
    return $destination;
    }
    
    
    呼び出し
    
    <?php
    header('content-type:text/html;charset=utf-8');
    $fileInfo=$_FILES["myFile"];
    $maxSize=10485760;//10M,10*1024*1024
    $allowExt=array('jpeg','jpg','png','tif');
    $path="uploads";
    include_once 'upFunc.php';
    uploadFile($fileInfo, $path, $allowExt, $maxSize);
    
    三、マルチファイルのアップロード実現
    3.1単一ファイルでのパッケージ化
    
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Insert title here</title>
    </head>
    <body>
    <form action="doAction5.php" method="post" enctype="multipart/form-data">
              :<input type="file" name="myFile1" /><br/>
              :<input type="file" name="myFile2" /><br/>
              :<input type="file" name="myFile3" /><br/>
              :<input type="file" name="myFile4" /><br/>
    <input type="submit" value="  "/>
    </form>
    </body>
    </html>
    <?php
    //print_r($_FILES);
    header('content-type:text/html;charset=utf-8');
    include_once 'upFunc.php';
    foreach ($_FILES as $fileInfo){
      $file[]=uploadFile($fileInfo);
    }
    
    ここの考えは、printからです。r($u)FILESで探してみます。プリントアウトしたら二次元配列です。簡単です。遍歴して使えばいいです。
    上のfunctionの定義を変えて、いくつかのデフォルトを与えます。
    
    function uploadFile($fileInfo,$path="uploads",$allowExt=array('jpeg','jpg','png','tif'),$maxSize=10485760){
    このように、簡単ですが、問題があります。
    正常に4つの画像をアップロードするのは大丈夫ですが、機能の中のexitがアクティブになるとすぐに停止し、他の画像もアップロードできなくなります。
    3.2アップグレード版のパッケージ
    複数または単一のファイルにアップロードするパッケージを実現することを目的としています。
    まずこのように静的なファイルを書きます。
    
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Insert title here</title>
    </head>
    <body>
    <form action="doAction5.php" method="post" enctype="multipart/form-data">
              :<input type="file" name="myFile[]" /><br/>
              :<input type="file" name="myFile[]" /><br/>
              :<input type="file" name="myFile[]" /><br/>
              :<input type="file" name="myFile[]" /><br/>
    <input type="submit" value="  "/>
    </form>
    </body>
    </html>
    
    印刷してくださいFILES
    
    Array
    (
      [myFile] => Array
        (
          [name] => Array
            (
              [0] => test32.png
              [1] => test32.png
              [2] => 333.png
              [3] => test41.png
            )
    
          [type] => Array
            (
              [0] => image/png
              [1] => image/png
              [2] => image/png
              [3] => image/png
            )
    
          [tmp_name] => Array
            (
              [0] => D:\wamp\tmp\php831C.tmp
              [1] => D:\wamp\tmp\php834C.tmp
              [2] => D:\wamp\tmp\php837C.tmp
              [3] => D:\wamp\tmp\php83BB.tmp
            )
    
          [error] => Array
            (
              [0] => 0
              [1] => 0
              [2] => 0
              [3] => 0
            )
    
          [size] => Array
            (
              [0] => 46174
              [1] => 46174
              [2] => 34196
              [3] => 38514
            )
    
        )
    
    )
    
    
    三次元配列が得られます。
    複雑なのは複雑ですが、複雑な規則があります。各数値が一緒になりました。
    ファイル情報を先に入手して、書類処理のような情報になります。
    
    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){ //   ,  $key  diao
            $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;
      
    }
    
    その前のようなexitのミスはexitを直したらいいです。ここでresを使います。
    
    function uploadFile($fileInfo,$path='./uploads',$flag=true,$maxSize=1048576,$allowExt=array('jpeg','jpg','png','gif')){
      //$flag=true;
      //$allowExt=array('jpeg','jpg','gif','png');
      //$maxSize=1048576;//1M
      //     
      $res=array();
      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){
          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($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;
      }
    }
    
    中には二つの小さいのが封入されています。
    
    function getExt($filename){
      return strtolower(pathinfo($filename,PATHINFO_EXTENSION));
    }
    
    /**
     *        
     * @return string
     */
    function getUniName(){
      return md5(uniqid(microtime(true),true));
    }
    
    
    その後、静的には、マルチファイルの入力をmultiple属性で実現する。
    
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <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="myFile[]" multiple='multiple' /><br/>
    <input type="submit" value="  "/>
    </form>
    </body>
    </html>
    doAction6
    <?php 
    //print_r($_FILES);
    header("content-type:text/html;charset=utf-8");
    require_once 'upFunc2.php';
    require_once 'common.func.php';
    $files=getFiles();
    // print_r($files);
    foreach($files as $fileInfo){
      $res=uploadFile($fileInfo);
      echo $res['mes'],'<br/>';
      $uploadFiles[]=@$res['dest'];
    }
    $uploadFiles=array_values(array_filter($uploadFiles));
    //print_r($uploadFiles);
    
    このようないくつかのファイルは、比較的強力なプロセスに向かってファイルをアップロードする機能を実現します。
    四、対象向けのファイルをアップロードする
    
    <?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;
    
    ダウンロード
    ブラウザで認識されていないものは、直接ダウンロードできますが、識別できるものには、1、2歩多くのステップが必要です。
    
    <!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>Insert title here</title>
    </head>
    <body>
    <a href="1.rar">  1.rar</a>
    <br />
    <a href="1.jpg">  1.jpg</a>
    <br />
    <a href="doDownload.php?filename=1.jpg">      1.jpg</a>
    <br />
    <a href="doDownload.php?filename=../upload/nv.jpg">  nv.jpg</a>
    <?php
    
    ?>
    </body>
    </html>
    <?php 
    $filename=$_GET['filename'];
    header('content-disposition:attachment;filename='.basename($filename));
    header('content-length:'.filesize($filename));
    readfile($filename);
    
    
    読んでくれてありがとうございます。みなさんのご協力をお願いします。ありがとうございます。