Validation Yii2-文件验证程序的minSize和maxSize适用于多少个文件?

Validation Yii2-文件验证程序的minSize和maxSize适用于多少个文件?,validation,file-upload,yii2,multi-upload,Validation,File Upload,Yii2,Multi Upload,从指南中,将minSize和maxSize描述为 上载文件所需的最小/最大字节数 但是没有解释这些属性应用于多少文件 它是每个文件还是所有文件的总大小?在验证程序代码中,它检查方法中的大小,所以它是每个文件的最小/最大大小,而不是所有文件 发件人: 错误示例: [ "The file \"git-flow cheatsheet.png\" is too big. Its size cannot exceed 819.2 KiB.", "The file \"IMG_201705

从指南中,将
minSize
maxSize
描述为

上载文件所需的最小/最大字节数

但是没有解释这些属性应用于多少文件


它是每个文件还是所有文件的总大小?

在验证程序代码中,它检查方法中的大小,所以它是每个文件的最小/最大大小,而不是所有文件

发件人:


错误示例:

[
    "The file \"git-flow cheatsheet.png\" is too big. Its size cannot exceed 819.2 KiB.",
    "The file \"IMG_20170531_134929.jpg\" is too big. Its size cannot exceed 819.2 KiB.",
    "The file \"Lenovo sound recorder icon.jpg\" is too small. Its size cannot be smaller than 409.6 KiB.",
    "The file \"memorable-linux-milestone_502911b05dc45.jpg\" is too small. Its size cannot be smaller than 409.6 KiB."
]

在验证程序代码中,它检查方法中的大小,所以它是每个文件的最小/最大大小,而不是所有文件

发件人:


错误示例:

[
    "The file \"git-flow cheatsheet.png\" is too big. Its size cannot exceed 819.2 KiB.",
    "The file \"IMG_20170531_134929.jpg\" is too big. Its size cannot exceed 819.2 KiB.",
    "The file \"Lenovo sound recorder icon.jpg\" is too small. Its size cannot be smaller than 409.6 KiB.",
    "The file \"memorable-linux-milestone_502911b05dc45.jpg\" is too small. Its size cannot be smaller than 409.6 KiB."
]

好吧,我还得证明第233行,好的,我已经确认了。这些属性适用于每个文件。因此,让我添加错误示例作为证明!好吧,我还得证明第233行,好的,我已经确认了。这些属性适用于每个文件。因此,让我添加错误示例作为证明!