Skip to content

Instantly share code, notes, and snippets.

@thalesmengue
Created May 19, 2022 22:59
Show Gist options
  • Save thalesmengue/017dfd414c619970420cdbdd85b36392 to your computer and use it in GitHub Desktop.
Save thalesmengue/017dfd414c619970420cdbdd85b36392 to your computer and use it in GitHub Desktop.
<?php
$daysAge = fgets(STDIN);
$anoSobra = $daysAge % 365;
$ano = $daysAge / 365;
$mesSobra = $anoSobra % 30;
$mes = $anoSobra / 30;
echo floor($ano) . " ano(s)" . PHP_EOL;
echo floor ($mes) . " mese(s)" . PHP_EOL;
echo floor ($mesSobra) . " dia(s)" . PHP_EOL;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment