zendframework/zend-validator
Powerful validation library from Zend Framework for PHP apps. Provides a wide range of reusable validators, input filtering, and custom rule support with clear error messages. Integrates easily into forms and domain validation workflows.
Zend\Validator\File\Count allows you to validate that the number of files
uploaded matches criteria, including a minimum number of files and/or a maximum
number of files.
The following options are supported:
min: The minimum number of uploaded files acceptable; null is equivalent
to 0, indicating no minimum.max: The maximum number of uploaded files acceptable; null is equivalent
to no maximum.$validator = new Zend\Validator\File\Count([
'min' => 1,
'max' => 5,
]);
// Setting to the $_FILES superglobal; could also use the zend-http
// request's `getFiles()` or PSR-7 ServerRequest's `getUploadedFiles()`.
$files = $_FILES;
if ($validator->isValid($files)) {
// Received between 1 and 5 files!
}
How can I help you explore Laravel packages today?