doujiu7704 2015-07-10 10:29
浏览 71
已采纳

Laravel 5.0获取上传的文件路径

I'm uploading a file through a form.

When I dump the file with $request->file("slide") it returns an UploadedFile object but it haven't a method to get the path to the temporal file.

How can I get it?

I need the path to modify the image with Intervention Image before saving it to disk.

  • 写回答

2条回答 默认 最新

  • drouie2014 2015-07-10 10:31
    关注

    Looking into the code I found the solution. UploadedFile extends from File and File extends from SplFileInfo so I can use its methods to access the paths:

    $object->getPath();
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?