resim upload sınıfı img oluşturma ile değil sorun

2 Cevap php

i varsayılan switch deyimi içinde çağrıldığını tutan bir görüntü yüklemeye çalıştığınızda aşağıdaki benim sınıf bir göz atın. o gider, ben neden göremiyorum.

<?php
class uploadimg2folder {



//create thumbnail
function createImage($fieldName,$width,$height) {

$thumb = $_FILES['$fieldName']['tmp_name'];
$path = "../uploads/".rand(0,1000);




    //verify file type and create an image resource
    switch($this->getImageExt($fieldName)) {

    case "jpg":
    $img = imagecreatefromjpeg($thumb);
    break;

    case "jpeg":
    $img = imagecreatefromjpeg($thumb);
    break;

    case "png":
    $img = imagecreatefrompng($thumb);
    break;


    case "gif":
    $img = imagecreatefromgif($thumb);
    break;

    case "bmp":
    $img = imagecreatefromwbmp($thumb);
    break;

    default: die("the file type you have upload is not supported by this application");

    }


    // Store image width and height
    list($img_width, $img_height) = getimagesize($img_src);


    // Create the new image
    $new_img = imagecreatetruecolor($width, $height);


    // Calculate stuff and resize image accordingly
    if (($width/$img_width) < ($height/$img_height)) {
        $new_width = $width;
        $new_height = ($width/$img_width) * $img_height;
        $new_x = 0;
        $new_y = ($height - $new_height) / 2;
    } else {
        $new_width = ($height/$img_height) * $img_width;
        $new_height = $height;
        $new_x = ($width - $new_width) / 2;
        $new_y = 0;
    }


    imagecopyresampled($new_img, $img, $new_x, $new_y, 0, 0, $new_width, $new_height, $img_width, $img_height);

    // Save thumbnail
    if (is_writeable(dirname($path))) {
        imagejpeg($new_img, $path, 100);
    }

    // Free up resources
    imagedestroy($new_img);
    imagedestroy($img);



}




    //this method gets the images extension
    function getImageExt($field_name) {

        $field = $_FILES['$field_name'][name];
        $field_ex = explode(".", $field);

        return end($field_ex);

    }




}
?>

Bu sınıf çağrıldığını nasıl

if(isset($_POST['submit']) && $_FILES['image']['size'] > 0) {

$imgObj = new uploadimg2folder();
$imgObj->createImage('image','500','400');
}
?>

Bu html sayfa içinde şeklidir

<form action="<?=$_SERVER['PHP_SELF'];?>" method="POST" enctype="multipart/form-data">
<label>image: </label>
<input type="file" name="image">
<br/>
<input type="submit" name="submit" value="upload">
</form>

2 Cevap

Ne olup bittiğini anlamaya kolay yolu anahtarı beslenen değerini yankılanır. Basitçe eklemek

echo $this->getImageExt($fieldName);

getImageExt fonksiyonu, özellikle aşağıdaki hattı ile ilgili sorunlar var çünkü switch başarısız oluyor:

    $field = $_FILES['$field_name'][name];
  • Bu olmalı $_FILES["$field_name"] - tek tırnak kullanırken değişkenleri interpolasyon değildir.
  • name 'name' .. bu satır bir uyarı üretecektir olmalıdır.