我正在尝试使用codeigniter上传图片。但是当我选择并上传文件时,它不会移动到我的目标文件夹。
这是我的控制器代码。
xsel -b -i
答案 0 :(得分:4)
CodeIgnier有一个上传库。 关注codeigniter upload documentation
public function do_upload()
{
$config['upload_path'] = './uploads/';
$config['allowed_types'] = 'gif|jpg|png';
$config['max_size'] = 100;
$config['max_width'] = 1024;
$config['max_height'] = 768;
$this->load->library('upload', $config);
$this->upload->do_upload('userfile'):
}
确保您遵循正确的文件夹路径。