Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 600 Bytes

Each.md

File metadata and controls

26 lines (19 loc) · 600 Bytes

Each

  • v::each(v $validatorForValue)
  • v::each(null, v $validatorForKey)
  • v::each(v $validatorForValue, v $validatorForKey)

Iterates over an array or Iterator and validates the value or key of each entry:

$releaseDates = array(
    'validation' => '2010-01-01',
    'template'   => '2011-01-01',
    'relational' => '2011-02-05',
);

v::arr()->each(v::date())->validate($releaseDates); //true
v::arr()->each(v::date(), v::string()->lowercase())->validate($releaseDates); //true

Using arr() before each() is a best practice.

See also: