Since 1981 Vehicle Identification Numbers in North America have followed a standard which provides a check digit to aid in the identification of transcription errors. Reproduced below is my PHP implementation that calculates a checksum and compares it to the check digit. class VehicleUtilities{ public static function validateVin($vin){ $vin=strtoupper($vin); //17 Chars <> I,O,Q - Last 4...
PHP VIN Code Validation
P
Recent Comments