Ben görüntü ve üzerlerine yüklemek için aşağıdaki model (CodeIgniter) kodu var.
Görüntü yolu sonucu olur Ancak, görüntüler / comfort_big.jpg ve images / comfort_big.jpg.jpg.
Küçük resim görüntü adını alır ve. Jpg ekleyin.
Ben başparmak için images / confort_thumb.jpg yükleyerek duyuyorum.
Herkes lütfen bana ne olduğunu söyleyebilir misiniz?
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'];
}
}
}