Skip to content

Instantly share code, notes, and snippets.

@inoas
Forked from alphp/cif_validation.php
Created May 12, 2022 08:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save inoas/3e9b6bc1e24b7236c93b02be6cfac7e4 to your computer and use it in GitHub Desktop.
Save inoas/3e9b6bc1e24b7236c93b02be6cfac7e4 to your computer and use it in GitHub Desktop.
Spanish CIF validation (PHP)
<?php
function cif_validation ($cif) {
$cif = strtoupper($cif);
if (preg_match('~(^[XYZ\d]\d{7})([TRWAGMYFPDXBNJZSQVHLCKE]$)~', $cif, $parts)) {
$control = 'TRWAGMYFPDXBNJZSQVHLCKE';
$nie = array('X', 'Y', 'Z');
$parts[1] = str_replace(array_values($nie), array_keys($nie), $parts[1]);
$cheksum = substr($control, $parts[1] % 23, 1);
return ($parts[2] == $cheksum);
} elseif (preg_match('~(^[ABCDEFGHIJKLMUV])(\d{7})(\d$)~', $cif, $parts)) {
$checksum = 0;
foreach (str_split($parts[2]) as $pos => $val) {
$checksum += array_sum(str_split($val * (2 - ($pos % 2))));
}
$checksum = ((10 - ($checksum % 10)) % 10);
return ($parts[3] == $checksum);
} elseif (preg_match('~(^[KLMNPQRSW])(\d{7})([JABCDEFGHI]$)~', $cif, $parts)) {
$control = 'JABCDEFGHI';
$checksum = 0;
foreach (str_split($parts[2]) as $pos => $val) {
$checksum += array_sum(str_split($val * (2 - ($pos % 2))));
}
$checksum = substr($control, ((10 - ($checksum % 10)) % 10), 1);
return ($parts[3] == $checksum);
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment