Skip to content

Instantly share code, notes, and snippets.

View thalesmengue's full-sized avatar
🥸
overthinking

Thales Machado thalesmengue

🥸
overthinking
View GitHub Profile
<?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;