PHP code example of motokraft / validator

1. Go to this page and download the library: Download motokraft/validator 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/ */

    

motokraft / validator example snippets




use \Motokraft\Validator\Validator;

// Данные запроса
$input_data = [
    'name' => 'user-name',
    'email' => '[email protected]'
];

// 1 вариант
$validator = new Validator($input_data);

// 2 вариант
$validator = Validator::getInstance('test');
$validator->loadArray($input_data);
bash
$ php composer