README update

This commit is contained in:
Alexandre Gomes Gaigalas 2010-09-24 00:38:53 -03:00
parent 9aee2ea16d
commit 8a7f2770c9

View file

@ -1,4 +1,23 @@
== About
Respect\Validation aims to be the most awesome validation toolkit ever created
.
Single validator usage samples:
<?php
use Respect\Validation\Validator as v;
//Returns true or false
v::isDate('2009-12-01', 'between', '2008-01-01', '2010-10-10');
//Exception sample
try {
v::validDate('2009-12-01', 'between', '2008-01-01', '2010-10-10');
} catch (Date\OutOfBoundsException $e) {
echo $e->getMessage();
}
//Raw constructor sample
$dateValidator = new Date\Between('2008-01-01', '2010-10-10');
$dateValidator->isValid('2009-12-01');