Laravel - get size from uploaded file

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

I have saved a file with this command

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

EventFi         


        
4条回答
  •  梦谈多话
    2021-01-07 18:10

    Very simple(Proper Laravel Way):

    //add this at the top of your controller
    use File;
    
    // add this with in your function
    $size = File::size($PATH_OF_FILE);
    

提交回复
热议问题