Ini telah ditanyakan sebelumnya. Coba ini:
function getAge($then) {
$then = date('Ymd', strtotime($then));
$diff = date('Ymd') - $then;
return substr($diff, 0, -4);
}
Sebut saja seperti ini:
$age = getAge($aPersoonsgegevens['alg_persoonsgegevens_geboortedatum']);