php – $_FILES [‘file’] [‘name’]在codeigniter中

如何获取在codeigniter中上传的文件的文件名.我们将输入字段的值设为$this-> input-> post(‘name’),但是如何获取从表单上传的文件的名称?

  public function create(){

        //getting all the POST data in $data array
        $data = array('title' => $this->input->post('title') ,
              'content' => $this->input->post('content'),
              'filename' => ?? HOW ??
        );
}   

最佳答案 1)确保你的表格是多部分的.使用帮助器form_open_multipart()

2)使用上传库接收文件

3)然后使用$this-> upload-> data()获得带有文件信息的数组

Here是如何和官方文档完整的

点赞