Laravel - get size from uploaded file

前端 未结 4 1990
既然无缘
既然无缘 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 17:57

    getClientSize() is deprecated starting version 4.1. Use getSize() instead.
    

    https://github.com/symfony/symfony/blob/4.1/UPGRADE-4.1.md#httpfoundation

提交回复
热议问题