A simple yet effective validation class written in PHP.
Originally created on October 31, 2009, using CodeIgniter, this class has been revived to meet the needs of numerous projects.
Github: https://github.com/nickyeoman/php-validation-class
Composer: https://packagist.org/packages/nickyeoman/php-validation-class
composer require nickyeoman/php-validation-class
Include the class in your project.
USE Nickyeoman\Validation;
$validate = new Nickyeoman\Validation\Validate();
And use:
$validate = new Validate;
$validate->isEmail($email);
$validate->isPhone($phone);
$validate->isPostalCode($postal);
$validate->isZipCode($zip);