如果我想上传img则失败。 * .png文件没问题。 图像尺寸可以接受。 没有验证器,* .png上传没有任何问题。
$validator = Validator::make([
'image' => Input::file('img')
], [
'image' => 'mimes:png, jpg, jpeg | max:5120'
]);
if($validator->fails())
{
return 'Error is occured while uploading file.';
}
答案 0 :(得分:1)
删除空格&它应该工作。
重命名:
'mimes:png, jpg, jpeg | max:5120'
对此:
'mimes:png,jpg,jpeg|max:5120'