0

複数の画像がアップロードされているにもかかわらず、このスクリプトのフォルダーに保存されるサムネイル画像は 1 つだけです。foreach ループの反復に関連するものに違いないと考えています。これは、以下に掲載されているサイズ変更スクリプトのみです。誰でも簡単に修正できますか?ありがとう

define('THUMBS_DIR', 'C: /inetpub / wwwroot / mysite / images / thumbs / ');
define('MAX_WIDTH', 90);
define('MAX_HEIGHT', 100);
if (array_key_exists('upload', $_POST)) 
{
    $original = $_FILES['image']['tmp_name'];

    foreach ($original as $number => $tmp_file) 
    {
        $original = ($tmp_file);  
    }

    if (!$original) 
    {
        echo 'NoImageSelected'; 
    }
}  else { 
    list($width, $height, $type) = getimagesize($original);

    if ($width <= MAX_WIDTH && $height <= MAX_HEIGHT) 
    {
        $ratio = 1; 
    }   elseif ($width > $height) {
        $ratio = MAX_WIDTH/$width;
    } else { 
        $ratio = MAX_HEIGHT/$height; 
    }

    $imagetypes = array(' / . gif$ / ',' / . jpg$ / ',' / . jpeg$ / ',' / . png$ / ');
    $name = preg_replace($imagetypes, '', basename($file[$location]));     
    $moved = @ move_uploaded_file($original[$location], THUMBS_DIR.$file); 

    if ($moved) 
    {
        $result[] = $_FILES['image']['name'].'succesfullyuploaded';
        $original = $ext.$file[$location]; 
    }else{
        $result = 'Problemuploading'.$_FILES['image']['name'];
    }

    if ($type == 1) 
    {
        $source = imagecreatefromgif($original);
    } elseif ($type == 2) {
        $source = imagecreatefromjpeg($original); 
    } elseif ($type == 3) {
        $source = imagecreatefrompng($original);
    } else { 
        $result = 'Cannotidentifythefiletype';
    }
}
4

1 に答える 1

0

スクリプトで何をしたいのか、もっと説明してください。あなたの問題は次の場所にあると思います:

$original = ($tmp_file); 

foreach ループで使用する変数を上書きしています。

于 2013-10-21T06:35:07.180 に答える