You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

889 B

PHPFormValidator

A PHP Library for 'self-documenting' server side Form Validations.

A typical usage would be like this:

use FormGuide\PHPFormValidator\FormValidator;

$validator = FormValidator::create();

$validator->fields(['name','email'])->areRequired()->maxLength(50);
$validator->field('email')->isEmail();

if(!$validator->test($_POST))
{
	return json_encode($validator->getErrors(true));
}

Installation using composer

composer require FormGuide/PHPFormValidator

Declaring validations for single fields

$validator->field('email')->isEmail()->isRequired();

Declaring validations for multiple fields

$validator->fields(['name','email'])->areRequired()->maxLength(50);

This is equivalent to:

$validator->field('name')->isRequired()->maxLength(50);

$validator->field('email')->isRequired()->maxLength(50);