2012-07-22 24 views
3

我正在使用class.upload.php,我的代碼都工作,除了我想擴展我的腳本工作與多個文件上傳我閱讀網站上的文檔,並能夠想辦法。不過,我需要我的圖像文件輸出,如m_1234_1,m_1234_3,m_1234_4等等......如何讓$handle->file_new_name_body = $new_name;$new_name.'1'開頭並繼續爲每次迭代添加1?動態文件名與多個圖像上傳

<?php 
    $id = $_GET['id']; 
    if(isset($_POST['submit'])) { 
     // define variables 
     $new_name = 'm_'.$id.'_'; 
     $thumb_name = 't_'.$id.'_'; 
     $ext = 'jpg'; 
     $upload_path = 'images/uploads/'.$id.'/'; // will not work with /images/ 
     $full_src = $upload_path.$new_name.'.'.$ext; 
     // end define variables 

     $files = array(); 
     foreach ($_FILES['userfile'] as $k => $l) { 
     foreach ($l as $i => $v) { 
     if (!array_key_exists($i, $files)) 
      $files[$i] = array(); 
      $files[$i][$k] = $v; 
     } 
     }  

     foreach ($files as $file) { 

      $handle = new upload($_FILES['userfile']); 
      if ($handle->uploaded) { 
       // save uploaded image 458 x 332 
       $handle->file_new_name_body = $new_name; 
       $handle->image_convert = $ext; 
       $handle->allowed = array('image/*'); 
       $handle->jpeg_quality = 95; 
       $handle->image_resize = true; 
       $handle->image_ratio_crop = true; 
        $handle->image_x = 458; 
        $handle->image_y = 332; 
       $handle->file_overwrite = true; 
       $handle->auto_create_dir = true; 
       $handle->process($upload_path); 
       if ($handle->processed) { 
        mysql_select_db($db); 
        mysql_query("UPDATE projects SET last_modified=NOW(), project_image_1 = '".$full_src."' WHERE id = $id") or die(mysql_error()); 
       } else { 
        echo '<div class="ec-messages messages-error">'; 
        echo 'Error: ' . $handle->error; 
        echo '</div>'; 
       } 
       // create thumbnail 104 x 76 
       $handle->file_new_name_body = $thumb_name; 
       $handle->image_convert = $ext; 
       $handle->allowed = array('image/*'); 
       $handle->jpeg_quality = 90; 
       $handle->image_resize = true; 
       $handle->image_ratio_crop = true; 
        $handle->image_x = 104; 
        $handle->image_y = 76; 
       $handle->file_overwrite = true; 
       $handle->auto_create_dir = true; 
       $handle->process($upload_path); 
       if ($handle->processed) { 
        echo '<div class="ec-messages messages-success">Image successfully uploaded and added to database (thumnails created)<br>Redirecting to <a href="projects.php?msg=insert">projects main</a>...</div><br><img src="'.$full_src.'" class="display-image">'; 
        echo "<script>setTimeout(\"location.href='projects.php?msg=insert';\",2000);</script>"; 
        include('Templates/footer_exit.php'); 
        $handle->clean(); 
        exit; 
       } else { 
        // no error here, error will be handled by the first script 
       } 
      } 
     } 
    } 
    ?> 

被更新(現在的工作):

 <?php 
$id = $_GET['id']; 
if(isset($_POST['submit'])) { 
    // define variables 
    $ext = 'jpg'; 
    $upload_path = 'images/uploads/'.$id.'/'; // will not work with /images/ 
    // end define variables 

    $files = array(); 
    foreach ($_FILES['userfile'] as $k => $l) { 
    foreach ($l as $i => $v) { 
    if (!array_key_exists($i, $files)) 
     $files[$i] = array(); 
     $files[$i][$k] = $v; 
    } 
    }  
    $counter = 1; 
    foreach ($files as $file) { 

     //$append = rand(100,99999); 
     $new_name = 'm_'.$id; 
     $thumb_name = 't_'.$id; 
     $handle = new upload($file); 
     if ($handle->uploaded) { 
      // save uploaded image 458 x 332 
      $count = $counter++; 
      $nn = sprintf("%s_%d", $new_name, $count); 
      $full_src = $upload_path.$nn.'.'.$ext; 
      $handle->file_new_name_body = $nn; 
      $handle->image_convert = $ext; 
      $handle->allowed = array('image/*'); 
      $handle->jpeg_quality = 95; 
      $handle->image_resize = true; 
      $handle->image_ratio_crop = true; 
       $handle->image_x = 458; 
       $handle->image_y = 332; 
      $handle->file_overwrite = true; 
      $handle->auto_create_dir = true; 
      $handle->process($upload_path); 
      if ($handle->processed) { 
       mysql_select_db($db); 
       mysql_query("UPDATE projects SET last_modified=NOW(), project_image_".$count." = '".$full_src."' WHERE id = $id") or die(mysql_error()); 
      } else { 
       echo '<div class="ec-messages messages-error">'; 
       echo 'Error: ' . $handle->error; 
       echo '</div>'; 
      } 
      // create thumbnail 104 x 76 
      $tn = sprintf("%s_%d", $thumb_name, $count); 
      $handle->file_new_name_body = $tn; 
      $handle->image_convert = $ext; 
      $handle->allowed = array('image/*'); 
      $handle->jpeg_quality = 90; 
      $handle->image_resize = true; 
      $handle->image_ratio_crop = true; 
       $handle->image_x = 104; 
       $handle->image_y = 76; 
      $handle->file_overwrite = true; 
      $handle->auto_create_dir = true; 
      $handle->process($upload_path); 
      if ($handle->processed) { 
       echo 'Done!'; 
       /* 
       echo '<div class="ec-messages messages-success">Image successfully uploaded and added to database (thumnails created)<br>Redirecting to <a href="projects.php?msg=insert">projects main</a>...</div><br><img src="'.$full_src.'" class="display-image">'; 
       echo "<script>setTimeout(\"location.href='projects.php?msg=insert';\",2000);</script>"; 
       include('Templates/footer_exit.php'); 
       $handle->clean(); 
       exit; 
       */ 
      } else { 
       // no error here, error will be handled by the first script 
      } 
     } 
    } 
} 
?> 

回答

0

你可能會在一開始定義

$new_name = 'm_'.$id.'_'; 
$counter = 1;    // File counter 

,並與

$handle->file_new_name_body = sprintf("%s.%d", $new_name, $counter++); 

讓「文件替換該行'會變成'file.1.jpg',等等ñ。

+0

我想通了你,更新代碼上面的作品!感謝您的幫助! – Alex 2012-07-22 21:07:08