我有一个没有规则的上传工作正常, 但是当我创建规则时,我得到错误:
LogicException in MimeTypeGuesser.php line 127:
Unable to guess the mime type as no guessers are available
(Did you enable the php_fileinfo extension?)
我的文章请求规则
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'Image' => 'required|mimes:jpeg'
];
}
我的表格
{!! Form::open(['url' => 'blog', 'files'=> true]) !!}
<div class="form-group">
{!! Form::label('Image', 'Upload:') !!}
{!! Form::file('Image', null, ['class' => 'form-control']) !!}
</div>
<div class="form-group">
{!! Form::submit('Submit', ['class' => 'btn btn-primary form-control']) !!}
</div>
{!! Form::close() !!}
答案 0 :(得分:39)
您应该在php.ini中启用以下行,然后重新启动您的apache
extension=php_fileinfo.dll
启用mean只是取消注释php.ini文件中的行
即,从此;extension=php_fileinfo.dll
到extension=php_fileinfo.dll
答案 1 :(得分:-2)
如果您的php.ini文件没有 extension = php_fileinfo.dll 。不用担心,让我们在其中添加这一行。祝你好运!
答案 2 :(得分:-2)
我遇到了同样的问题,但没有问题strip
。我更改了 PHP 版本,问题已修复