PHP文件上传类,包含批量上传

<?php
/**

Post Date:
 06-05-21(FileUpload_Single)
 06-10-7(Files_Upload)
 
Author:
 Ray/Kaway.Cheng/zjwtnt
 
Email:
 good999@21cn.com
 
FileUpload_Single:
 单个文件上传类
 
Files_Upload:
 批量上传类

它们的调用方法已标在类里边,

 

**/
?>

<?php
class FileUpload_Single
{
//user define ------------------------------------- 
 var $accessPath ;//string "./" is current
 var $fileSize;//int 300KB
 var $defineTypeList;//string jpg|gif|bmp  ...
 var $filePrefix;//string
 var $changNameMode;//chang name mode value: 0-2 ,NULL:不改名
//------------------------------------------------- 
 var $uploadFile;//array upload file attribute 
 var $newFileName;
 var $error;
 
 
 function TODO()
 {//main
  
  $this -> error = "<ul>";
  $pass = true ;
 
 
  if ( ! $this -> GetFileAttri() )
  {
   $this -> error .= "<li>The file doesn't exist.</li>";
   //return false;
   $pass = false;
  }
  
  if( ! $this -> CheckFileAttri_size() )
  {
   $this -> error .= "<li>The file uploaded is too big.</li>";
   return false;
   $pass = false;
  }
  if( ! $this -> CheckFileMIMEType() )
  {
   $this -> error .= "<li>The file type is incorrect.</li>";
   //return false;
   $pass = false;
  } 
  
  if ( ! $this -> MoveFileToNewPath() )
  {
   $this -> error .= "<li>error, the file has been moved.</li>";
   //return false;
   $pass = false;
  }  
  $this -> error .= "</ul>";
  return $pass;
 } 
 
 function GetFileAttri()
 { //first get the file attribute
  foreach( $_FILES as $tmp )
  {
   $this -> uploadFile = $tmp;
  }
  return ( empty( $this -> uploadFile[ 'name' ] ) ) ? false : true;
 }
 
 function CheckFileAttri_size()
 {
  if ( ! empty ( $this -> fileSize ) )
  {
   if ( is_numeric( $this -> fileSize ) )
   {
    if ( $this -> fileSize > 0 )
    {
     return ( $this -> uploadFile[ 'size' ] > $this -> fileSize * 1024 ) ? false : true ;
    }   
   }
   else
   {
    return false;
   }
  }
  else
  {
   return false;
  }
 }
 
 function ChangeFileName ( $prefix = NULL  , $mode )
 {// string $prefix , int $mode
  $fullName = ( isset( $prefix ) ) ? $prefix."_" : NULL ;
  switch ( $mode )
  {
   case 0   : $fullName .= rand( 0 , 100 ). "_" .strtolower( date ("ldSfFYhisa") ) ; break;
   case 1   : $fullName .= rand( 0 , 100 ). "_" .time(); break;
   case 2   : $fullName .= rand( 0 , 10000 ) . time();   break;
   case NULL : $fullName = NULL;break;
   default  : $fullName .= rand( 0 , 10000 ) . time();   break;
  }
  return $fullName;
 }
 
 function MoveFileToNewPath()
 {
  $newFileName = NULL;
  if ( $this -> changNameMode != NULL )
  {
   $newFileName = $this -> ChangeFileName( $this -> filePrefix , $this -> changNameMode ). "." . $this -> GetFileTypeToString();
  }
  else
  {
   $newFileName = $this -> uploadFile[ 'name' ];
  }

  if ( file_exists( $this -> accessPath ) )
  {
    if ( file_exists( $this -> accessPath . $newFileName ) )
   {
    $newFileName = uniqid("")."_" . $newFileName;
    echo "<script>alert('目标目录存在同名文件,因些已把上传的文件改名为:$newFileName.');</script>";
   }
    if ( move_uploaded_file( $this -> uploadFile[ 'tmp_name' ] , realpath( $this -> accessPath ) . "/" . $newFileName ) )
    {
    $this -> newFileName = $newFileName;
    return true;
    }
    else
    {
    return false;
    }
  }
  else
  {
   return false;
  }
  
 } 
 function CheckFileExist( $path = NULL )
 {
  return ( $path == NULL ) ? false : ( ( file_exists( $path ) ) ? true : false );
 }
 
 function GetFileMIME()
 {
  return empty( $this -> uploadFile[ 'type' ] ) ? NULL : $this -> uploadFile[ 'type' ] ;
 }
 
 function CheckFileMIMEType()
 {
   $pass = false;
   $defineTypeList = strtolower( $this -> defineTypeList );
   $MIME = strtolower( $this -> GetFileMIME() );
   if ( !empty ( $defineTypeList  ) )
   {
   if ( !empty ( $MIME ) )
   {
    foreach( explode( "|" , $MIME ) as $tmp )
    {
     if ( $tmp == $MIME )
     {
      $pass = true;
     }
    
    }
   }
   else
   {
    return false;
   }     
   }
   else
   {
   return false;
   }
   return $pass;
 }
 
 function GetFileTypeToString()
 {
  if( ! empty( $this -> uploadFile[ 'name' ] ) )
  {
   return substr( strtolower( $this -> uploadFile[ 'name' ] ) , strlen( $this -> uploadFile[ 'name' ] ) - 3 , 3 ); 
  }
 }
 

 

}
?>

<?php
/**
$tmp = new FileUpload_Single;
$tmp -> accessPath = "./" ;
$tmp -> fileSize = 50 ;//int 300KB
$tmp -> defineTypeList = "jpeg|jpg|gif";//string jpg|gif|bmp  ...
$tmp -> filePrefix = "way";//string
$tmp -> changNameMode = 2;
if ( $tmp -> TODO() )
{
 echo "ok";
 echo "<br>".$tmp -> newFileName;
}
else
{
 echo $tmp -> error;
}
**/
//echo "aa=".$_FILES[ 'myfile' ]['size'];
?>

<?php
class Files_Upload
{
 //暂时不用,考虑到别的操作系统可以识别的文件类型差异,需要调试
 /**
 $fileType[ "exe" ] = "application/octet-stream";
 $fileType[ "gif" ] = "image/gif";
 $fileType[ "jpg" ] = "image/pjpeg";
 $fileType[ "png" ] = "image/x-png";
 $fileType[ "bmp" ] = "image/bmp"; 
 $fileType[ "txt" ] = "text/plain";
 $fileType[ "html" ] = "text/plain";
 $fileType[ "doc" ] = "application/msword";
 $fileType[ "xls" ] = "application/vnd.ms-excel";
 $fileType[ "ppt" ] = "application/vnd.ms-powerpoint";
 **/
//user define ------------------------------------- 
 var $accessPath ;//string "./" is current
 var $fileSize;//int 300KB
 var $defineTypeList;//string jpg|gif|bmp  ...
 var $filePrefix;//string
 var $changNameMode;//chang name mode value: 0-2 ,NULL:不改名
 var $file_id;

//------------------------------------------------- 
 var $uploadFiles;//array upload file attribute 
 var $newFileName = array();//array
 var $error = array();//array
 var $fileType = array();//array
 
/**
$tmp = new Files_Upload;
$tmp -> accessPath = "bk/" ;
$tmp -> fileSize = 50 ;//int 300KB
$tmp -> defineTypeList = "jpeg|jpg|gif";//string jpg|gif|bmp  ...
$tmp -> filePrefix = "way";//string
$tmp -> changNameMode = 2;
$tmp -> file_id = "file";//文件域id[], eg.file[]
$tmp -> TODO();
**/ 
 
 
 function TODO()
 {
  $this -> GetAttri();
  $this -> MoveFileToNewPath();
 }
 
 function ChangeFileName ( $prefix = NULL  , $mode )
 {// string $prefix , int $mode
  $fullName = ( isset( $prefix ) ) ? $prefix."_" : NULL ;
  switch ( $mode )
  {
   case 0   : $fullName .= rand( 0 , 100 ). "_" .strtolower( date ("ldSfFYhisa") ) ; break;
   case 1   : $fullName .= rand( 0 , 100 ). "_" .time(); break;
   case 2   : $fullName .= rand( 0 , 10000 ) . time();   break;
   case NULL : $fullName = NULL;break;
   default  : $fullName .= rand( 0 , 10000 ) . time();   break;
  }
  return $fullName;
 }

 function GetAttri()//1
 {
  $this -> fileType = explode( "|" , $this -> defineTypeList );
  $this -> uploadFiles = $_FILES[$this->file_id];
 } 
 
 function MoveFileToNewPath()
 {
  $i = 0;
  foreach( $this -> uploadFiles[ "name" ] as $v )
  {
   if ( $v != NULL )
   {
    if ( $this -> CheckType( $v ) )
    {
     if ( $this -> CheckSize( $this -> uploadFiles[ "size" ][ $i ] ) )
     {
      array_push( $this -> error , "$v 文件超出限制字节." );
     }
     else
     {


      $newFileName = NULL;
      if ( $this -> changNameMode != NULL )
      {
       $newFileName = $this -> ChangeFileName( $this -> filePrefix , $this -> changNameMode ). "." . substr( $v ,  strrpos( $v , "." ) + 1 , strlen( $v ) - strrpos( $v , "." ) ) ;
      }
      else
      {
       $newFileName = $this -> uploadFiles[ 'name' ][ $i ];
      }
    
      if ( file_exists( $this -> accessPath ) )
      {
       if ( file_exists( $this -> accessPath . $newFileName ) )
       {
        $newFileName = uniqid("")."_" . $newFileName;
        echo "<script>alert('目标目录存在同名文件,因些已把上传的文件改名为:$newFileName.');</script>";
       }
         if ( move_uploaded_file ( $this -> uploadFiles[ "tmp_name" ][ $i ] , realpath( $this -> accessPath ) . "/" . $newFileName ) )
       {
       array_push( $this -> newFileName, $newFileName );
       }
       else
       {
       array_push( $this -> error , "$v 文件不能移到目标位置." );
       }
      
       }

 

     }
    }
    else
    {
     array_push( $this -> error , "$v 文件类型不匹配." );
    }
   }
   $i++; 
  }
  
  if ( $i == 0 ) { return false;}
 }
 
 function CheckType( $uploadName  )
 {
  if ( in_array( substr( $uploadName ,  strrpos( $uploadName , "." ) + 1 , strlen( $uploadName ) - strrpos( $uploadName , "." ) ) , $this->fileType ) )
  {
   return true;
  }
  else
  {
   return false;
  }
 }
 
 function CheckSize( $fileSize )
 {
  return $fileSize > $this -> fileSize * 1024;
 }
 
}
?>

代码来源:http://xxling.com/blog/article/75.aspx 我只是将其代码中asp实例改成了php,转载及使用必须注明原作者。 请遵循原作者开放分享的方式,请勿用来赚取积分!!! 代码做的非常简单,只是用于演示,没有加入任何过滤函数。请务必修改(加入过滤函数)后使用,【坚决不能】直接用于网站!! 之前没怎么接触过js,也是随手做一个。如果不满意请各位多包含,毕竟我不是骗分,也请您高抬贵手。 目前网上看到最好的一个HTML5批量上传程序,它使用纯html+js进行批量上传,不需要flash、jquery等额外组件,大小只有10KB左右。 主要是我想研究一下html5批量上传,但发现纯html5在php中会出现超时、没有进度等问题,于是这网上找了一圈。发现目前的代码,要不就是传统的flash,要不就是调用臃肿的jquery,要不就是代码动辄几百K,根本没法分析。而且CSDN上资源骗分居多,找了一圈花了几十分,还是没下载到一个真正满意的代码。 于是根据这位博主的分享,把原程序精简,并改为了php脚本。因为我php也是初学,之前一直出现只上传1个文件的问题。后来发现是由于定义秒为文件名,本地速度过快将前面的函数覆盖了。多亏了php的sleep,才将这个问题解决。 于是这个简单的批量上传组件就这样做好了,欢迎各位测试和修改。 最后再次提醒各位务必牢记原作者xiaolingzi和其博客地址地址: http://xxling.com/blog/article/75.aspx 转载请注明原作者,修改和使用也不要去掉js的作者标记。 毕竟那标记就一行,人家写个程序很不容易,请各位尊重作者的劳动。谢谢各位配合!
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值