程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 不定數量表單生成縮略較長

不定數量表單生成縮略較長

編輯:關於PHP編程

先來看看,例子調用方法:

效果圖:

下面來看看代碼.先上傳類?<?php
/*
 TITLE       : CLASS Upload
 FILE        : class.upload.php
 DESCRIPTION : To provide upload utility,
 AUTHOR      : Peng Zhang zpadmin()gmail.com http://blog.neten.de
 BASED ON    : whxbb whxbb()21cn.com
 WRITED      : 2005 NOV 20
 MODIFIED    : 2006 MAR 01
 modify by psdshow (psdshow(at)yahoo.com.cn) 2007-11-30
 LICENCE     : GPL
 REVISION    : V1.0.2
*/
class Upload{
 var $saveName;// 保存名
 var $savePath;// 保存路徑
 var $fileFormat = array('gif','jpg','doc','application/octet-stream');// 文件格式&MIME限定
 var $overwrite = 0;// 覆蓋模式
 var $maxSize = 0;// 文件最大字節
 var $ext;// 文件擴展名
 var $thumb = 0;// 是否生成縮略圖
 var $thumbWidth = 130;// 縮略圖寬
 var $thumbHeight = 130;// 縮略圖高
 var $thumbPrefix = "_thumb_";// 縮略圖前綴
 var $errno;// 錯誤代號
 var $returnArray= array();// 所有文件的返回信息
 var $returninfo= array();// 每個文件返回信息


// 構造函數
// @param $savePath 文件保存路徑
// @param $fileFormat 文件格式限制數組
// @param $maxSize 文件最大尺寸
// @param $overwriet 是否覆蓋 1 允許覆蓋 0 禁止覆蓋

 function Upload($savePath, $fileFormat='',$maxSize = 0, $overwrite = 0) {
  $this->setSavepath($savePath);
  $this->setFileformat($fileFormat);
  $this->setMaxsize($maxSize);
  $this->setOverwrite($overwrite);
  $this->setThumb($this->thumb, $this->thumbWidth,$this->thumbHeight);
  $this->errno = 0;
 }

// 上傳
// @param $fileInput 網頁Form(表單)中input的名稱
// @param $changeName 是否更改文件名
 function run($fileInput,$changeName = 1){
  if(isset($_FILES[$fileInput])){
   $fileArr = $_FILES[$fileInput];
   if(is_array($fileArr['name'])){//上傳同文件域名稱多個文件
    for($i = 0; $i < count($fileArr['name']); $i++){
     $ar['tmp_name'] = $fileArr['tmp_name'][$i];
     $ar['name'] = $fileArr['name'][$i];
     $ar['type'] = $fileArr['type'][$i];
     $ar['size'] = $fileArr['size'][$i];
     $ar['error'] = $fileArr['error'][$i];
     $this->getExt($ar['name']);//取得擴展名,賦給$this->ext,下次循環會更新
     $this->setSavename($changeName == 1 ? '' : $ar['name']);//設置保存文件名
     if($this->copyfile($ar)){
      $this->returnArray[] =  $this->returninfo;
     }else{
      $this->returninfo['error'] = $this->errmsg();
      $this->returnArray[] =  $this->returninfo;
     }
    }
    return $this->errno ?  false :  true;
   }else{//上傳單個文件
    $this->getExt($fileArr['name']);//取得擴展名
    $this->setSavename($changeName == 1 ? '' : $fileArr['name']);//設置保存文件名
    if($this->copyfile($fileArr)){
     $this->returnArray[] =  $this->returninfo;
    }else{
     $this->returninfo['error'] = $this->errmsg();
     $this->returnArray[] =  $this->returninfo;
    }
    return $this->errno ?  false :  true;
   }
   return false;
  }else{
   $this->errno = 10;
   return false;
  }
 }

// 單個文件上傳
// @param $fileArray 文件信息數組
 function copyfile($fileArray){
  $this->returninfo = array();
  // 返回信息
  $this->returninfo['name'] = $fileArray['name'];
  $this->returninfo['saveName'] = $this->saveName;
  $this->returninfo['size'] = number_format( ($fileArray['size'])/1024 , 0, '.', ' ');//以KB為單位
  $this->returninfo['type'] = $fileArray['type'];
  // 檢查文件格式
  if (!$this->validateFormat()){
   $this->errno = 11;
   return false;
  }
  // 檢查目錄是否可寫
  if(!@is_writable($this->savePath)){
   $this->errno = 12;
   return false;
  }
  // 如果不允許覆蓋,檢查文件是否已經存在
  //if($this->overwrite == 0 && @file_exists($this->savePath.$fileArray['name'])){
  // $this->errno = 13;
  // return false;
  //}
  // 如果有大小限制,檢查文件是否超過限制
  if ($this->maxSize != 0 ){
   if ($fileArray["size"] > $this->maxSize){
    $this->errno = 14;
    return false;
   }
  }
  // 文件上傳
  if(!@move_uploaded_file($fileArray["tmp_name"], $this->savePath.$this->saveName)){
   $this->errno = $fileArray["error"];
   return false;
  }elseif( $this->thumb ){// 創建縮略圖
   $CreateFunction = "imagecreatefrom".($this->ext == 'jpg' ? 'jpeg' : $this->ext);
   $SaveFunction = "image".($this->ext == 'jpg' ? 'jpeg' : $this->ext);
   if (strtolower($CreateFunction) == "imagecreatefromgif"
    && !function_exists("imagecreatefromgif")) {
    $this->errno = 16;
    return false;
   } elseif (strtolower($CreateFunction) == "imagecreatefromjpeg"
    && !function_exists("imagecreatefromjpeg")) {
    $this->errno = 17;
    return false;
   } elseif (!function_exists($CreateFunction)) {
    $this->errno = 18;
    return false;
   }
    
   $Original = @$CreateFunction($this->savePath.$this->saveName);
   if (!$Original) {$this->errno = 19; return false;}
   $originalHeight = ImageSY($Original);
   $originalWidth = ImageSX($Original);
   $this->returninfo['originalHeight'] = $originalHeight;
   $this->returninfo['originalWidth'] = $originalWidth;
   /*
   if (($originalHeight < $this->thumbHeight
    && $originalWidth < $this->thumbWidth)) {
    // 如果比期望的縮略圖小,那只Copy
    move_uploaded_file($this->savePath.$this->saveName,
     $this->savePath.$this->thumbPrefix.$this->saveName);
   } else {
    if( $originalWidth > $this->thumbWidth ){// 寬 > 設定寬度
     $thumbWidth = $this->thumbWidth ;
     $thumbHeight = $this->thumbWidth * ( $originalHeight / $originalWidth );
     if($thumbHeight > $this->thumbHeight){// 高 > 設定高度
      $thumbWidth = $this->thumbHeight * ( $thumbWidth / $thumbHeight );
      $thumbHeight = $this->thumbHeight ;
     }
    }elseif( $originalHeight > $this->thumbHeight ){// 高 > 設定高度
     $thumbHeight = $this->thumbHeight ;
     $thumbWidth = $this->thumbHeight * ( $originalWidth / $originalHeight );
     if($thumbWidth > $this->thumbWidth){// 寬 > 設定寬度
      $thumbHeight = $this->thumbWidth * ( $thumbHeight / $thumbWidth );
      $thumbWidth = $this->thumbWidth ;
     }
    }
    */
    $radio=max(($originalWidth/$this->thumbWidth),($originalHeight/$this->thumbHeight));
    $thumbWidth=(int)$originalWidth/$radio;
    $thumbHeight=(int)$originalHeight/$radio;

    if ($thumbWidth == 0) $thumbWidth = 1;
    if ($thumbHeight == 0) $thumbHeight = 1;
    $createdThumb = imagecreatetruecolor($thumbWidth, $thumbHeight);
    if ( !$createdThumb ) {$this->errno = 20; return false;}
    if ( !imagecopyresampled($createdThumb, $Original, 0, 0, 0, 0,
     $thumbWidth, $thumbHeight, $originalWidth, $originalHeight) )
     {$this->errno = 21; return false;}
    if ( !$SaveFunction($createdThumb,
     $this->savePath.$this->thumbPrefix.$this->saveName) )
     {$this->errno = 22; return false;}
   
  }
  // 刪除臨時文件
  /*
  if(!@$this->del($fileArray["tmp_name"])){
   return false;
  }
  */
  return true;
 }

// 文件格式檢查,MIME檢測
 function validateFormat(){
  if(!is_array($this->fileFormat)
   || in_array(strtolower($this->ext), $this->fileFormat)
   || in_array(strtolower($this->returninfo['type']), $this->fileFormat) )
   return true;
  else
   return false;
 }
// 獲取文件擴展名
// @param $fileName 上傳文件的原文件名
 function getExt($fileName){
  $ext = explode(".", $fileName);
  $ext = $ext[count($ext) - 1];
  $this->ext = strtolower($ext);
 }

// 設置上傳文件的最大字節限制
// @param $maxSize 文件大小(bytes) 0:表示無限制
 function setMaxsize($maxSize){
  $this->maxSize = $maxSize;
 }
// 設置文件格式限定
// @param $fileFormat 文件格式數組
 function setFileformat($fileFormat){
  if(is_array($fileFormat)){$this->fileFormat = $fileFormat ;}
 }

// 設置覆蓋模式
// @param overwrite 覆蓋模式 1:允許覆蓋 0:禁止覆蓋
 function setOverwrite($overwrite){
  $this->overwrite = $overwrite;
 }


// 設置保存路徑
// @param $savePath 文件保存路徑:以 "/" 結尾,若沒有 "/",則補上
 function setSavepath($savePath){
  $this->savePath = substr( str_replace("\","/", $savePath) , -1) == "/"
  ? $savePath : $savePath."/";
 }

// 設置縮略圖
// @param $thumb = 1 產生縮略圖 $thumbWidth,$thumbHeight 是縮略圖的寬和高
 function setThumb($thumb, $thumbWidth = 0,$thumbHeight = 0){
  $this->thumb = $thumb;
  if($thumbWidth) $this->thumbWidth = $thumbWidth;
  if($thumbHeight) $this->thumbHeight = $thumbHeight;
 }

// 設置文件保存名
// @param $saveName 保存名,如果為空,則系統自動生成一個隨機的文件名
 function setSavename($saveName){
  if ($saveName == ''){  // 如果未設置文件名,則生成一個隨機文件名
   $name = date('YmdHis')."_".rand(100,999).'.'.$this->ext;
   //判斷文件是否存在,不允許重復文件
   if(file_exists($this->savePath . $name)){
    $name = setSavename($saveName);
    }
  } else {
   $name = $saveName;
  }
  $this->saveName = $name;
 }

// 刪除文件
// @param $fileName 所要刪除的文件名
 function del($fileName){
  if(!@unlink($fileName)){
   $this->errno = 15;
   return false;
  }
  return true;
 }

// 返回上傳文件的信息
 function getInfo(){
  return $this->returnArray;
 }

// 得到錯誤信息
 function errmsg(){
  $uploadClassError = array(
   0 =>'There is no error, the file uploaded with success. ',
   1 =>'The uploaded file exceeds the upload_max_filesize directive in php.ini.',
   2 =>'The uploaded file exceeds the MAX_FILE_SIZE that was specified in the HTML form.',
   3 =>'The uploaded file was only partially uploaded. ',
   4 =>'No file was uploaded. ',
   6 =>'Missing a temporary folder. Introduced in PHP 4.3.10 and PHP 5.0.3. ',
   7 =>'Failed to write file to disk. Introduced in PHP 5.1.0. ',
   10 =>'Input name is not unavailable!',
   11 =>'The uploaded file is Unallowable!',
   12 =>'Directory unwritable!',
   13 =>'File exist already!',
   14 =>'File is too big!',
   15 =>'Delete file unsuccessfully!',
   16 =>'Your version of PHP does not appear to have GIF thumbnailing support.',
   17 =>'Your version of PHP does not appear to have JPEG thumbnailing support.',
   18 =>'Your version of PHP does not appear to have pictures thumbnailing support.',
   19 =>'An error occurred while attempting to copy the source image .
     Your version of php ('.phpversion().') may not have this image type support.',
   20 =>'An error occurred while attempting to create a new image.',
   21 =>'An error occurred while copying the source image to the thumbnail image.',
   22 =>'An error occurred while saving the thumbnail image to the filesystem.
     Are you sure that PHP has been configured with both read and write access on this folder?',
   );
  if ($this->errno == 0)
   return false;
  else
   return $uploadClassError[$this->errno];
 }
}
?>

 

下面看看是怎麼調用 的.:

<?php
//如果收到表單傳來的參數,則進行上傳處理,否則顯示表單
if(isset($_FILES['uploadinput'])){
 //建目錄函數,其中參數$directoryName最後沒有"/",
 //要是有的話,以'/'打散為數組的時候,最後將會出現一個空值
 function makeDirectory($directoryName) {
  $directoryName = str_replace("\","/",$directoryName);
  $dirNames = explode('/', $directoryName);
  $total = count($dirNames) ;
  $temp = '';
  for($i=0; $i<$total; $i++) {
   $temp .= $dirNames[$i].'/';
   if (!is_dir($temp)) {
    $oldmask = umask(0);
    if (!mkdir($temp, 0777)) exit("不能建立目錄 $temp");
    umask($oldmask);
   }
  }
  return true;
 }

 if($_FILES['uploadinput']['name'] <> ""){
  //包含上傳文件類
  require_once ('class.upload.php');
  //設置文件上傳目錄
  $savePath = "upload";
  //創建目錄
  makeDirectory($savePath);
  //允許的文件類型
  $fileFormat = array('gif','jpg','jpge','png');
  //文件大小限制,單位: Byte,1KB = 1000 Byte
  //0 表示無限制,但受php.ini中upload_max_filesize設置影響
  $maxSize = 0;
  //覆蓋原有文件嗎? 0 不允許  1 允許
  $overwrite = 0;
  //初始化上傳類
  $f = new Upload( $savePath, $fileFormat, $maxSize, $overwrite);
  //如果想生成縮略圖,則調用成員函數 $f->setThumb();
  //參數列表: setThumb($thumb, $thumbWidth = 0,$thumbHeight = 0)
  //$thumb=1 表示要生成縮略圖,不調用時,其值為 0
  //$thumbWidth  縮略圖寬,單位是像素(px),留空則使用默認值 130
  //$thumbHeight 縮略圖高,單位是像素(px),留空則使用默認值 130
  $f->setThumb(1);
  
  //參數中的uploadinput是表單中上傳文件輸入框input的名字
  //後面的0表示不更改文件名,若為1,則由系統生成隨機文件名
  if (!$f->run('uploadinput',1)){
   //通過$f->errmsg()只能得到最後一個出錯的信息,
   //詳細的信息在$f->getInfo()中可以得到。
   echo $f->errmsg()."<br>n";
  }
  //上傳結果保存在數組returnArray中。
  echo "<pre>";
  print_r($f->getInfo());
  echo "</pre>";
 }
}else{
?>
<form enctype="multipart/form-data" action="" method="POST">
Send this file: <br />
<input name="uploadinput[]" type="file"><br />
<input name="uploadinput[]" type="file"><br />
<input name="uploadinput[]" type="file"><br />
<input type="submit" value="Send File"><br />
</form>
<?php
}
//我們上傳一個已經存在了的圖片文件,
//一個正常的圖片文件,和一個不允許上傳的文件,
//輸出結果如下
/*
The uploaded file is Unallowable!

Array
(
    [0] => Array
        (
            [name] => boy.jpg
            [saveName] => boy.jpg
            [size] => 137
            [type] => image/pjpeg
            [error] => File exist already!
        )

    [1] => Array
        (
            [name] => girl.JPG
            [saveName] => girl.JPG
            [size] => 31
            [type] => image/pjpeg
            [originalHeight] => 450
            [originalWidth] => 600
        )

    [2] => Array
        (
            [name] => test.wma
            [saveName] => test.wma
            [size] => 971
            [type] => audio/x-ms-wma
            [error] => The uploaded file is Unallowable!
        )

)
*/
?>

 


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved