yiisoft / yii2

Yii 2: The Fast, Secure and Professional PHP Framework
http://www.yiiframework.com
BSD 3-Clause "New" or "Revised" License
14.24k stars 6.91k forks source link

FileValidator 'allowEmpty'=>true #2905

Closed djfly closed 10 years ago

djfly commented 10 years ago

in yii1 can use allowEmpty and tooLarge

array('img', 'file', 'allowEmpty'=>true, 'types'=>'jpg, gif, png', 'maxSize'=>2097152, 'tooLarge' => '{file}files can not exceed 2MB. Please upload a small bit of the file.',),

in yii2 how can i do this?

samdark commented 10 years ago

skipOnEmpty and tooBig.

djfly commented 10 years ago

thanks!