yii2“minHeight”规则的自定义错误消息

时间:2017-11-12 10:02:06

标签: php yii2

这是我的规则

        [
            ['photo_1','photo_2','photo_3','photo_4','photo_5','photo_6'], 
            'image', 
            'skipOnEmpty' => true,
            'minHeight' =>  '281',
            'minWidth' =>  '281',
            'extensions' => 'png, jpg, gif',
            'wrongExtension' => 'Faqat .png, .jpg, yoki .gif formatidagi rasmlarni yuklashingiz mumkin!',
        ],

如何为'minHeight'和'minWidth'编写自定义错误消息?

1 个答案:

答案 0 :(得分:0)

使用underHeightunderWidth键(就像您使用wrongExtension一样)。

可用的占位符:

  • {attribute}:属性名称
  • {file}:上传的文件名
  • {limit}:$ minWidth(或$ minHeight)
  • 的值