-
Notifications
You must be signed in to change notification settings - Fork 0
/
calc_cpf.php
49 lines (39 loc) · 1.05 KB
/
calc_cpf.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
function calc_cpf($cpf){
// Extrai somente os números
$cpf = preg_replace( '/[^0-9]/is', '', $cpf );
// Verifica se foi informado todos os digitos corretamente
if (strlen($cpf) != 11) {
return false;
}
// Verifica se foi informada uma sequência de digitos repetidos. Ex: 111.111.111-11
if (preg_match('/(\d)\1{10}/', $cpf)) {
return false;
}
// Faz o calculo para validar o CPF
for ($t = 9; $t < 11; $t++) {
for ($d = 0, $c = 0; $c < $t; $c++) {
$d += $cpf[$c] * (($t + 1) - $c);
}
$d = ((10 * $d) % 11) % 10;
if ($cpf[$c] != $d) {
return false;
}
}
return true;
}
$qtd = addslashes($_POST['qtd']);
$html = '';
$i = 0;
$err = 0;
while($i < $qtd){
$new_cpf = rand(11111111111,99999999999);
if(calc_cpf($new_cpf)){
$i++;
$html .= '<tr><td>'.$new_cpf.'</td></tr>';
}else{
$err++;
}
}
echo json_encode(['cpf'=>$html, 'qtd_ger'=>number_format($err+intval($qtd),0,'','.')]);
exit;