Laravel : To rename an uploaded file automatically

后端 未结 7 1340
北海茫月
北海茫月 2020-12-11 04:31

I am allowing users to upload any kind of file on my page, but there might be a clash in names of files. So, I want to rename the file automatically, so that anytime any fil

7条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-11 05:04

    correct usage.

    $fileName = Input::get('rename_to');
    Input::file('photo')->move($destinationPath, $fileName);
    

提交回复
热议问题