Zend Framework
LICENSE
This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.
Validator for the size of all files which will be validated in sum

__construct(
integer|array|\Zend_Config $options
)
:
void
Sets validator options
Min limits the used diskspace for all files, when used with max=null it is the maximum filesize It also accepts an array with the keys 'min' and 'max'
Name | Type | Description |
---|---|---|
$options | integer|array|\Zend_Config | Options for this validator |

isValid(
string|array $value, array $file
=
null
)
:
boolean
Defined by Zend_Validate_Interface
Returns true if and only if the disk usage of all files is at least min and not bigger than max (when max is not null).
Name | Type | Description |
---|---|---|
$value | string|array | Real file to check for size |
$file | array | File data from Zend_File_Transfer |
Type | Description |
---|---|
boolean |