1. Go to this page and download the library: Download wscore/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/ */
wscore / validation example snippets
use \WScore\Validation\ValidationFactory;
$factory = new ValidationFactory(); // use English rules and messages.
$factory = new ValidationFactory('ja'); // use Japanese rules and messages.
$input = $factory->on($_POST); // create a validator object.
// set rules for input data.
$input->set('name')->asText()->); // a selected text
$input->set('age')->asInteger()->range([10, 70]); // an integer between 10-70
// maybe update rules based on age?
$age = $input->get('age');
if ($age > 12) {
$input->getRules('type')->getSafe(); // get only the validated value.
} else {
$validatedInputs = $input->getAll(); // validation success!
}
echo $input->set('ABC')->asText()->pattern('[a-c]*')->string('lower'); // 'abc'
# must lower the string first, then check for pattern...
/**
* @param ValueTO $v
*/
$filter = function( $v ) {
$val = $v->getValue(); // get the value to validate.
$val .= ':customized!'; // you can alter the value.
$v->setValue( $val ); // and reset the value.
$v->setError(__METHOD__); // set error if the custome validation fails.
$v->setMessage('Closure with Error'); // you can set error message as well.
};
$input->asText('test')->addCustom('myFilter', $filter);
$input->setValue('extra', 'good'); // set some value.
$input->setError('bad', 'why it is bad...'); // set error.
if ($input->fails()) {
echo $input->getAll()['extra']; // 'good'
echo $input->getMessages('bad'); // 'why it is bad...'
}
$factory = new ValidationFactory('locale', 'your/path');
$input = $factory->on($_POST);
return array(
// 5. general error message
0 => 'invalid input',
// 4. messages for types
'_type_' => [
'mail' => 'invalid mail format',
...
],
// 3. specific messages for method
'encoding' => 'invalid encoding',
...
// 2. message for matches and parameter
'matches' => [
'number' => 'only numbers (0-9)',
...
],
);
$input->set('text')->asText()->); // 'Oops!'
$input->set('int')->asText()->matchInteger();
$input->set('kana')->asText()->mbOnlyKatakana();
echo $input->getMessage('int'); // 'not an integer'
echo $input->getMessage('kana'); // 'only in katakana'