PHP Codeigniter - Как сохранить изображение в папку - PullRequest
0 голосов
/ 22 июня 2019

Мне нужно знать, как сохранить изображение поста в папке в codeigniter

1 Ответ

0 голосов
/ 24 июня 2019
 function addImage() {
if (!is_dir('./Uploads/')) {
    mkdir('./Uploads/', 0777, TRUE);
}
if (!empty($_FILES['image'])) {
    $config['upload_path'] = './Uploads/';
    $config['allowed_types'] = '*';
    $config['max_size'] = '100';
    $config['max_width'] = '1024';
    $config['max_height'] = '768';
    $config['overwrite'] = TRUE;
    $config['file_name'] = date('U') . '_' . $_FILES['image']['name'];
    $this->load->library('upload', $config);
    $this->upload->initialize($config);
    if (!$this->upload->do_upload('image')) {
        $error = array('error' => $this->upload->display_errors());
        print_r($error);
        die;
    } else {
        if ($this->upload->do_upload('image')) {
            $image_data = $this->upload->data();
            $full_path = $config['file_name'];
            $insert["image"] = $full_path;
            $insertId = $this->data_model->add_data($insert, 'tableName');

        }
    }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...