Answer the question
In order to leave comments, you need to log in
How to change the number of possible files depending on their type?
How can I make it so that if the user can select only 1 pdf file, or several jpg.?
The form:
<?= $form->field($model, 'tmpFile')->textInput(['multyple' => true]);
[['tmpFile'], 'file' 'extenstions' => 'jpf, pdf', 'mime-types' => 'image/jpef, application/pdf', 'maxFiles' => 5]
Answer the question
In order to leave comments, you need to log in
Group files by type and then check
if(count($arr['jpg']) > 5 || count($arr['pdf']) > 1 )
return;
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question