$这 - > upload-> do_upload();不工作

时间:2016-02-05 12:52:34

标签: file codeigniter file-upload

self.performSegueWithIdentifier("segueId", sender: self)

“我已经尝试过一些教程来完成这项工作,但似乎没有任何工作可用于这个”

2 个答案:

答案 0 :(得分:1)

它可能是"上传"中的文件权限问题。目录。设置适当的可写权限以上传文件夹。

答案 1 :(得分:0)

 'upload_path' => $image_path,
 'allowed_types' => "gif|jpg|png|jpeg",
 'overwrite' => TRUE,
 'max_size' => "2048000",
 'max_height' => "1000",
 'max_width' => "2000"

试试这个。