Laravel - get size from uploaded file

前端 未结 4 2008
既然无缘
既然无缘 2021-01-07 17:12

I have saved a file with this command

$newFile = [
            \'event_id\' => $event->id,
            \'path\' => $storePath
           ];

EventFi         


        
4条回答
  •  旧时难觅i
    2021-01-07 17:55

    Laravel 5

    $request->file('file')->getSize();
    

    Laravel 4

    $request->file('file')->getClientSize(); // getClientSize() is deprecated in Laravel 5
    

提交回复
热议问题