文件不在流明目录中移动

时间:2018-03-19 14:28:07

标签: php file file-upload lumen

我正在尝试使用流明将文件存储在以下路径“public / uploads / images”中。 这是我的代码

if($request->hasFile('photo')){
    $file = $request->file('photo');
    $fileName = time().$counter.'.'.$request->file('photo')->getClientOriginalExtension();
    $request->file('photo')->move('/uploads/images', $fileName);
    return $fileName;
}

但是没有文件转移到路径上。仅返回文件名。有什么问题以及如何解决?

1 个答案:

答案 0 :(得分:0)

尝试使用public_path函数将其上传到公用文件夹。 例如:

 Match List – I and List – II and identify the correct code :

访问https://laracasts.com/discuss/channels/laravel/image-upload-using-storage-function-to-public-folder