PHP code example of nsp-team / validator-tool

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

    

nsp-team / validator-tool example snippets



$v = new Validator;

$v->ame')->lengthBetween(2, 50)->alpha();
$v->John',
        'last_name' => 'D',
    ],
    'newsletter' => true,
]);

$result->isValid(); // bool(false).
$result->getMessages();
/**
 * array(1) {
 *     ["user.last_name"]=> array(1) {
 *         ["Length::TOO_SHORT"]=> string(53) "last_name  字符串长度太短,必须在 80-120 个字符长度之间."
 *     }
 * }
 */