Input_Item::validate — Validates the specified data.
public mixed Input_Item::validate ( string $method, mixed $data [, mixed $options] )
If $data is not set, NULL will be returned. FALSE is returned on validation failure and TRUE returns of everything's OK.
http://example.com/?email=someemail@host.com
if ($input->get ('email')->validate ('valid_email')) { // 'email' is a real Email address }