PHP code example of gin0115 / slim-validation
1. Go to this page and download the library: Download gin0115/slim-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/ */
gin0115 / slim-validation example snippets php
Validator::__construct([ bool $showValidationRules = true [, array $defaultMessages = [] ]])
php
$container['validator'] = function () {
return new Awurth\SlimValidation\Validator();
};
php
$_POST = [
'username' => 'awurth',
'password' => 'my_password'
];
php
/**
* @var Psr\Http\Message\ServerRequestInterface $request
*/
$validator->request($request, [
'username' => V::notBlank(),
'password' => V::length(8)
]);
php
$arrayToValidate = [
'key_1' => 'value_1',
'key_2' => 'value_2'
];
php
/**
* @var array $arrayToValidate
*/
$validator->array($arrayToValidate, [
'key_1' => V::notBlank(),
'key_2' => V::notBlank()
]);
php
$validator->value('12345', V::numeric(), 'secret_code');
php
/**
* @var Psr\Http\Message\ServerRequestInterface $request
*/
$validator->validate($request, [
'param' => V::notBlank()
]);
/**
* @var object $object
*/
$validator->validate($object, [
'property' => V::notBlank()
]);
/**
* @var array $array
*/
$validator->array($array, [
'key' => V::notBlank()
]);
$secretCode = '12345';
$validator->validate($secretCode, [
'rules' => V::numeric(),
'key' => 'secret_code'
]);
php
$user = [
'username' => 'awurth',
'password' => 'my_password'
];
$address = [
'street' => '...',
'city' => '...',
'country' => '...'
];
$validator->validate($user, [
// ...
], 'user');
$validator->validate($address, [
// ...
], 'address');
php
$validator->getErrors();
// Will return:
[
'user' => [
'username' => [
// Errors...
]
],
'address' => [
'street' => [
// Errors...
]
]
]
php
$container['view'] = function ($container) {
// Twig configuration
$view = new Slim\Views\Twig(...);
// ...
// Add the validator extension
$view->addExtension(
new Awurth\SlimValidation\ValidatorExtension($container['validator'])
);
return $view;
};