PHP code example of psx / validate
1. Go to this page and download the library: Download psx/validate 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/ */
psx / validate example snippets
use PSX\Validate\Filter;
use PSX\Validate\Validate;
$validate = new Validate();
$result = $validate->validate($data, Validate::TYPE_STRING, [new Filter\Alnum(), new Filter\Length(3, 255)]);
if ($result->isSuccessful()) {
echo 'Valid!';
} else {
echo implode(', ', $result->getErrors());
}