1. Go to this page and download the library: Download albert221/validation library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
albert221 / validation example snippets
use Albert221\Validation\Validator;
use Albert221\Validation\Rule;
// $data = [...];
$verdicts = Validator::build()
->addField('username')
->addRule(Rule\Required::class)
->addRule(Rule\Length::class, ['min' => 4])
->addRule(Rule\PdoUnique::class, ['pdo' => $pdo, 'table' => 'users', 'field' => 'username'])
->addField('email')
->addRule(Rule\Required::class)
->addRule(Rule\Email::class)
->addRule(Rule\PdoUnique::class, ['pdo' => $pdo, 'table' => 'users', 'field' => 'email'])
->addField('password')
->addRule(Rule\Required::class)
->addRule(Rule\Length::class)
->setOption('min', 6) // You can set options that way, too!
->addRule(Rule\Complexity::class, ['alpha' => true, 'num' => true, 'special' => true])
->setMessage('Your password is too weak!')
->addField('confirm_password')
->addRule(Rule\SameAs::class, ['field' => 'password']
->validate($data);
if ($verdicts->fails()) {
// Validation failed
}
// Validation passed
# Other methods
$verdicts->passes(); // Is valid?
$verdicts->forField('username'); // Get all verdicts for specified field.
$verdicts->forField('username')->passes(); // Is specified field valid?
$verdicts->toArray(); // Get all verdicts as an array.
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.