Is there any way to transform file type format to lower cases in yii form validation. For example, JPG => jpg, PNG => png. Even, I added image file formats in capital in validation rules, but it is still saying invalide file format.
Here's my validation rule:
array('photo','filter','filter'=>'strtolower'),
array('photo', 'file', 'types' => 'JPG,jpg,jpeg,JPEG,gif,GIF,png,PNG', 'allowEmpty' => true, 'maxSize' => 1024 * 1024 * 2,
'tooLarge' => 'Size should be less then 2MB !!!'),