Skip to content

Instantly share code, notes, and snippets.

View nfcg's full-sized avatar
🏠
Working from home

Nuno Carmo nfcg

🏠
Working from home
View GitHub Profile
@nfcg
nfcg / nif.class.php
Created January 21, 2024 22:45 — forked from iznog/nif.class.php
Portuguese NIF Validation
<?php
class Nif{
function calcularNif($string_nif){
if(strlen($string_nif)==9){
$nif_temp=str_split($string_nif);
//print_r($nif_temp);
//echo "<br>";
$contador=9;
$soma_controlo=0;