move_uploaded_file($_FILES[$filename]["tmp_name"], $target_file);
if (file_exists($target_file)) {
$config['image_library'] = 'gd2';
$config['source_image'] = $target_file;
$config['new_image'] = $path . 'thumbs/' . $new_filename;
$config['create_thumb'] = false;
$config['maintain_ratio'] = TRUE;
$config['width'] = 860;
$config['height'] = 645;
$this->load->library('image_lib', $config);
$this->image_lib->resize();
}
Павел имел ввиду, что нужно запилить в форыч
https://www.php.net/manual/ru/function.move-uploaded-file.php
Обсуждают сегодня