Mysql
 sql >> Database >  >> RDS >> Mysql

Come faccio a determinare facilmente l'età da un compleanno? (php)

Questo è stato già chiesto. Prova questo:

function getAge($then) {
    $then = date('Ymd', strtotime($then));
    $diff = date('Ymd') - $then;
    return substr($diff, 0, -4);
}

Chiamalo così:

$age = getAge($aPersoonsgegevens['alg_persoonsgegevens_geboortedatum']);