thinkphp6上传excel问题

浏览:1106 发布日期:2020/08/12 分类:ThinkPHP6专区
thinkphp6中上传excel里验证mime问题,mime确定为application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,但就是无法上传,报类型不允许;
验证代码:
validate(['file'=>[
'fileSize' => 40 * 1024 * 1024,
'fileExt' => 'xls,xlsx',
'fileMime' => ['application/vnd.ms-excel', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','application/octet-stream'],
]])->check(['file' => $file]);
最佳答案
评论( 相关
后面还有条评论,点击查看>>