我正在尝试在本地驱动器中上传大于1mb的文件,但这给了我所述错误。尝试更新我的php.ini设置(xampp),但仍然出现错误。
;上载文件的最大允许大小。 ; http://php.net/upload-max-filesize upload_max_filesize = 20M
我的上传代码是:
//store file
$file = $request['file'];
$mime = $file->getClientOriginalExtension();
$now = Carbon::now();
$filename_renamed = 'receipt'.Auth::user()->username.'_'.$now->day.'_'.$now->month.'_'.$now->year.'_'.substr(str_shuffle(str_repeat('123456789', 10)), 0, '9').'_.'.$mime;
$file->storeAs('\receipts',$filename_renamed);
PHP.INI设置
;上传文件的最大允许大小 upload_max_filesize = 20M
我的上传代码是:
//store file
$file = $request['file'];
$mime = $file->getClientOriginalExtension();
$now = Carbon::now();
$filename_renamed = 'receipt'.Auth::user()->username.'_'.$now->day.'_'.$now->month.'_'.$now->year.'_'.substr(str_shuffle(str_repeat('123456789', 10)), 0, '9').'_.'.$mime;
$file->storeAs('\receipts',$filename_renamed);