Skip to content

Instantly share code, notes, and snippets.

@aurbano
Created September 15, 2014 15:29
Show Gist options
  • Save aurbano/e2e2c1df75ee4d652144 to your computer and use it in GitHub Desktop.
Save aurbano/e2e2c1df75ee4d652144 to your computer and use it in GitHub Desktop.
Calculate age in PHP from timestamp
<?php
function getAge($birth){
$t = time();
$age = ($birth < 0) ? ( $t ($birth * -1) ) : $t - $birth;
return floor($age/31536000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment