2

我刚刚开始将 CodeIgniter 3 项目迁移到 CodeIgniter 4。

一切正常,除了文件上传。

我想将用户上传的文件保存在 /writable/uploads 中。下面是我用来将上传的文件移动到所需位置的代码。

            $target_dir = '/writable/uploads/recordings/';
            $target_file = $target_dir . basename($_FILES["gfile"]["name"]);
            $FileType = pathinfo($target_file,PATHINFO_EXTENSION);

            if($FileType != "mp3") {            
             $vmuploadOk = 1;
            }               
            else
             $vmuploadOk = 1;   


            if ($vmuploadOk == 1) {
                $greetfile = $id . "g" . basename($_FILES["gfile"]["name"]);

                $target_filenew = $target_dir . $greetfile;     

                move_uploaded_file($_FILES["gfile"]["tmp_name"], $target_filenew);                 
            }

我认为这是因为 CI4 将可写文件夹保留在公用文件夹之外。

4

2 回答 2

2

这对我有用,我希望它也对你有用。在 codeigniter 4 中,请使用它来上传您的文件并将其移动到您的控制器中。


        if($imagefile = $this->request->getFiles())
{
    if($img = $imagefile['gfile'])
    {
        if ($img->isValid() && ! $img->hasMoved())
        {
            $newName = $img->getRandomName(); //This is if you want to change the file name to encrypted name
            $img->move(WRITEPATH.'uploads', $newName);
            
            // You can continue here to write a code to save the name to database
            // db_connect() or model format
                            
        }
    }
}

或者

if($img = $this->request->getFile('gfile'))
        {
            if ($img->isValid() && ! $img->hasMoved())
            {
                $newName = $img->getRandomName();
                $img->move(ROOTPATH . 'public/uploads/images/users', $newName);
 
                // You can continue here to write a code to save the name to database
                // db_connect() or model format
                            
            }
        }

然后在您的 html 输入字段中

<input type="file" name="gfile">

我希望这能引起我的注意

于 2020-03-28T01:54:26.777 回答
2

您没有使用 CodeIgniter 的内置函数。代码中显示的所有内容都是 PHP 函数。如果您想利用内置 CI 功能,请查看@Boominathan Elango 链接的文档。

从请求中获取文件:

$file = $this->request->getFile('here_goes_input_name');

如指定here

使用 CI 功能移动文件:

$file->move(WRITEPATH.'uploads', $newName);

如指定here

于 2020-03-10T16:26:42.500 回答