Answers for "check php max upload size laravel"

PHP
0

how to get the size of an uploaded file in laravel

use Illuminate\Support\Facades\Storage;

$size = Storage::size('public/'.$picture->filename');
Posted by: Guest on December-22-2020
0

the uploaded file exceeds the upload_max_filesize in laravel

post_max_size = 6G
upload_max_filesize = 4G
memory_limit = 8G
Posted by: Guest on May-05-2021

Browse Popular Code Answers by Language