-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetodosEstaticos.php
73 lines (58 loc) · 2.22 KB
/
metodosEstaticos.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
// Métodos estáticos.
class Documento {
private $numero;
public function getNumero(){
return $this->numero;
}
public function setNumero($numero){
$resultado = Documento::validarCPF($numero);
if ($resultado === false) {
throw new Exception("CPF inválido!", 1);
}
$this->numero = $numero;
}
public static function validarCPF($cpf):bool {
// Verifica se o número foi informado.
if(empty($cpf)) {
return false;
}
// Elimina possivel máscara.
$cpf = preg_replace('[^0-9]', '', $cpf);
$cpf = str_pad($cpf, 11, '0', STR_PAD_LEFT);
// Verifica se o número de digitos informados é igual a 11.
if (strlen($cpf) != 11) {
return false;
}
// Verifica se nenhuma das sequências inválidas abaixo foi digitada. Caso afirmativo, retorna falso.
else if ($cpf == '00000000000' ||
$cpf == '11111111111' ||
$cpf == '22222222222' ||
$cpf == '33333333333' ||
$cpf == '44444444444' ||
$cpf == '55555555555' ||
$cpf == '66666666666' ||
$cpf == '77777777777' ||
$cpf == '88888888888' ||
$cpf == '99999999999') {
return false;
// Calcula os dígitos verificadores para verificar se o CPF é válido.
} else {
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;
}
}
}
$cpf = new Documento();
$cpf->setNumero("08594175574");
var_dump($cpf->getNumero());
echo "<br>";
var_dump(Documento::validarCPF("08594175574"));