. Gif,. Jpg veya. Png çıkarmak için nasıl

2 Cevap php

Windows kullanmak ve ben bir dosya uzantısı görüntüler.

PHP ile bir resim dosyası yüklediğinizde, image1_big.jpg bir görüntü ismi image1_big.jpg.jpg olur.

Ve Image2.gif image2.gif.gif olur.

Ben dosya uzantısı kapatmak istemiyorum.

Nasıl bu sorunu önleyebilirsiniz?

function addProduct(){
    $data = array( 
        'name' => db_clean($_POST['name']),
        'shortdesc' => db_clean($_POST['shortdesc']),
        'longdesc' => db_clean($_POST['longdesc'],5000),
        'status' => db_clean($_POST['status'],8),
        'class' => db_clean($_POST['class'],30),
        'grouping' => db_clean($_POST['grouping'],16),
        'category_id' => id_clean($_POST['category_id']),
        'featured' => db_clean($_POST['featured'],5),
        'price' => db_clean($_POST['price'],16)

    );

    if ($_FILES){
        $config['upload_path'] = './images/';
        $config['allowed_types'] = 'gif|jpg|png';
        $config['max_size'] = '200';
        $config['remove_spaces'] = true;
        $config['overwrite'] = false;
        $config['max_width']  = '0';
        $config['max_height']  = '0';
        $this->load->library('upload', $config);  
        if (strlen($_FILES['image']['name'])){
            if(!$this->upload->do_upload('image')){
                $this->upload->display_errors();
                exit();
            }
            $image = $this->upload->data();
            if ($image['file_name']){
                $data['image'] = "images/".$image['file_name'];
            }
        }
        if (strlen($_FILES['thumbnail']['name'])){
            if(!$this->upload->do_upload('thumbnail')){
                $this->upload->display_errors();
                exit();
            }
            $thumb = $this->upload->data();
            if ($thumb['file_name']){
                $data['thumbnail'] = "images/".$thumb['file_name'];
            }
        }
    }
    $this->db->insert('omc_products', $data); 

    $new_product_id = $this->db->insert_id();
...
...

2 Cevap

Eğer gereken düşünüyorsanız, sadece dosya uzantısı şerit olabilir. Ancak, ben genel olarak PHP için doğru davranış değildir BalusC yorumuna ile devam ediyorum:

$filename = substr($filename_passed_to_upload, 0, (strlen($filename_passed_to_upload) - 4));

ya da daha rigourously:

$temp = explode(".", $filename_passed_to_upload);
$new_filename = $temp[0]; 
// be careful, this fails when the name has a '.' in it other than for the extention
// you'll probably want to do something with a loop with $temp

basename function bunu nasıl söylesem gereksiz uzantısı (ler) ilgilenir:

$filename = dirname($old_filename) . '/' . basename($old_file_name, '.gif');

Sadece son uzantısı kullanılır, böylece Alternatif olarak, çift uzantıları kaldırmak için Perl regex (bu tüm çift ve üçlü genişletilmiş dosyaları idare edecek), var.

#                                +-+-- handles .c through .jpeg
#                                | |
$filename = preg_replace('/(\\..{1,4}){2,}$/', '$1', $old_filename);