Skip to content

Instantly share code, notes, and snippets.

@zrkb
Last active April 11, 2019 14:44
Show Gist options
  • Select an option

  • Save zrkb/747866c47f47762989caf0fa7707160b to your computer and use it in GitHub Desktop.

Select an option

Save zrkb/747866c47f47762989caf0fa7707160b to your computer and use it in GitHub Desktop.
Digito Verificador de Ruc Paraguayo
<?php
function digito_verificador($ci, $baseMax = 11)
{
$resultado = 0;
$index = 0;
for ($rucIndex = strlen($ci) - 1; $rucIndex >= 0; $rucIndex--) {
$resultado += (int) $ci[$rucIndex] * ($index + 2);
$r = $resultado % $baseMax;
$index++;
};
$verificador = $r > 1 ? $baseMax - $r : 0;
return $verificador;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment