我在codeigniter中有以下php:
$config['upload_path'] = './uploads/';
$config['allowed_types'] = 'gif|jpg|png';
$config['max_size'] = '4000';
$config['max_width'] = '3000';
$config['max_height'] = '3000';
$this->load->library('upload', $config);
$image_data = $this->upload->do_upload();
但是,当文件上传时,$image_data['file_path']返回为 /home/public_html/sitename/uploads。我需要它去 www.domain.com/uploads。关于为什么会发生这种情况的任何想法?
我宁愿不必在那里硬编码 str 替换。希望这不是重复的。