-
-
Save brunoleles/7502ff767ba02c3b69d1 to your computer and use it in GitHub Desktop.
Validar CNPJ (PHP)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function validate_cnpj($cnpj) { | |
$cnpj = preg_replace('/[^0-9]/', '', (string) $cnpj); | |
$cnpj = str_pad($cnpj, 14, '0', STR_PAD_LEFT); | |
// Validar cnpj | |
if ($cnpj === '00000000000000') { | |
return false; | |
} | |
// Valida tamanho | |
if (strlen($cnpj) != 14) { | |
return false; | |
} | |
// Valida primeiro dígito verificador | |
for ($i = 0, $j = 5, $soma = 0; $i < 12; $i++) { | |
$soma += $cnpj{$i} * $j; | |
$j = ($j == 2) ? 9 : $j - 1; | |
} | |
$resto = $soma % 11; | |
if ($cnpj{12} != ($resto < 2 ? 0 : 11 - $resto)) { | |
return false; | |
} | |
// Valida segundo dígito verificador | |
for ($i = 0, $j = 6, $soma = 0; $i < 13; $i++) { | |
$soma += $cnpj{$i} * $j; | |
$j = ($j == 2) ? 9 : $j - 1; | |
} | |
$resto = $soma % 11; | |
if ($cnpj{13} == ($resto < 2 ? 0 : 11 - $resto)) { | |
return $cnpj; | |
} | |
return false; | |
} | |
var_dump(validate_cnpj('11.444.777/0001-61')); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment