Skip to content

adambullmer/USDLRegex

Repository files navigation

US Driver's License Regex Repository

codecov

Sourced from https://ntsi.com/drivers-license-format/ Known to be valid as of 2016-04-16.

Installation

Install with composer: composer require adambullmer/usdl-regex

Usage

$options = array(
    'verbose'         => FALSE,
    'caseInsensitive' => FALSE,
);
$validator = new USDLRegex/Validator($options);

$validator->validate('TX', '12345678');  // TRUE
$validator->validate('TX', '123456789'); // FALSE