PHP 上传文件 面向对象

1,封装

<?php

class upload{
      protected $fileName;
      protected $maxSize;
      protected $allowMime;
      protected $imgFlag;
      protected $allowExt;
      protected $uploadPath;
      protected $fileInfo;
      protected $error;
      protected $ext;

   public function __construct($fileName='myFile',$imgFlag=true,$uploadPath='./uploads',$maxSize=5242880,$allowExt=array('jpeg','jpg','png','gif','wbmp'),$allowMime=array('image/jpeg','image/jpg','image/png','image/gif','image/wbmp')){
      $this->filename=$filename;
      $this->maxSize=$maxSize;
      $this->allowMime=$allowMime;
      $this->allowExt=$allowExt;
      $this->uploadPath=$uploadPath;
      $this->imgFlag=$imgFlag;
      $this->fileInfo=$_FILES[$this->fileName];

   }
   /*
    *检测是否有错
    */
    protected function checkError() {
       if(is_null($this->fileInfo)){

        if($this->fileInfo['error']>0){

           switch ($this->fileInfo['error']) {
              case 1:
                 $this->error='超过了PHP配置文件中upload_max_files';
                 break;
              case 2:
                 $this->error='超过了表单MAX_FTLE_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;
  }
    }
    /*
     @检测文件的大小
     */
    protected function checkSize() {
      if($this->fileInfo['size']>$this->maxSize){
       $this->error='上传的文件过大';
       return false;
      }
      return true;
    }
     /*
     @检测文件的扩展名
     */
     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;
     }
     /*
     @检测文件类型
     */
      protected function checkMime() {
       if(!in_array($this->fileInfo['type'], $this->allowMime)){
       $this->error='不允许的文件类型';
       return false;
      }
      return true;
      }
      /*
       @检测文件是否真的是图片
       */
       protected function checkTrueImg() {
       if($this->imgFlag){
          if(!@getimagesize($this->fileInfo['tmp_name'])){
             $this->error='不是真的图片';
       return false;
          }
        return true;
      }
     
      }
      /*
       @检测文件是否是http post传递
       */
       protected function HTTPPost() {
       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,ture);
           }
        }
        /*
*得到唯一文件名
 */
function getUniName(){
   return md5(uniqid(microtime(true),true));
}
      
    /*
     *上传文件
     */
   public function uploadFile() {
      if($this->checkError()&&$this->checkSize()
          &&$this->checkMime()&&$this->checkTrueImg()&&$this->checkHTTPPost()&&$this->checkExt()){
          //判断路径是否存在
          $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();
      }
   }
}
2,视图

<!DOCTYPE html>
<html lang="en">
<head>
   <meta charset="UTF-8">
   <title>文件上传</title>
</head>
<body>
   <form action="morefile.php" method="post" enctype="multipart/form-data">
         <!-- multiple选择多个文件上传 -->
         <input type="file" name="myFile[]" multiple="multiple"/><br>
         <input type="submit" value="上传文件" /><br>
   </form>

</body>
</html>
3,使用:

<?php
header('content-type:text/html;charset=utf-8');
require_once 'class.php';
$upload=new upload();
// $d=$upload->uploadFile();
$d=$upload->uploadFile('myfile','fff');
echo $d;

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值