File Validators
In This Article
IsImage
Zend\Validator\File\IsImage
checks if a file is an image, such as jpg or png.
This validator is based on the MimeType validator and supports
the same methods and options.
The default list of image file MIME types can be found in the source code.
Please refer to the MimeType validator for options and public methods.
Basic Usage
$validator = new Zend\Validator\File\IsImage();
if ($validator->isValid('./myfile.jpg')) {
// file is valid
}
Found a mistake or want to contribute to the documentation? Edit this page on GitHub!