KGRKJGETMRETU895U-589TY5MIGM5JGB5SDFESFREWTGR54TY
Server : Apache/2.4.62
System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64
User : www ( 80)
PHP Version : 8.3.8
Disable Function : NONE
Directory :  /domains/irtiweb/careers_old/vendor/FormGuide/PHPFormValidator/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /domains/irtiweb/careers_old/vendor/FormGuide/PHPFormValidator/README.md
# PHPFormValidator

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

A typical usage would be like this:

```php
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

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

## Declaring validations for multiple fields 

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

This is equivalent to:

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

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



Anon7 - 2021