PHP code example of antalaron / regex-validator
1. Go to this page and download the library: Download antalaron/regex-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/ */
antalaron / regex-validator example snippets
use Antalaron\RegexValidator\Regex;
use Symfony\Component\Validator\Validation;
$validator = Validation::createValidator();
$violations = $validator->validate('/foo/', new Regex());
if (0 !== count($violations)) {
foreach ($violations as $violation) {
echo $violation->getMessage().'<br>';
}
}