Quantcast
Channel: Developer’s References – Web & Database PHP Developers
Viewing all articles
Browse latest Browse all 14

Understanding VIN Number Validation

$
0
0
function validate_vin($vin) { $vin = strtolower($vin); if (!preg_match('/^[^\Wioq]{17}$/', $vin)) { return false; } $weights = array(8, 7, 6, 5, 4, 3, 2, 10, 0, 9, 8, 7, 6, 5, 4, 3, 2); $transliterations = array( "a" => 1, "b" => 2, "c" => 3, "d" => 4, "e" => 5, "f" => 6, "g" => [...]

Viewing all articles
Browse latest Browse all 14

Trending Articles