Skip to content

Instantly share code, notes, and snippets.

@2tunnels
Created April 25, 2013 03:08
Show Gist options
  • Select an option

  • Save 2tunnels/5457236 to your computer and use it in GitHub Desktop.

Select an option

Save 2tunnels/5457236 to your computer and use it in GitHub Desktop.
Get age from birth date
<?php
$timezone = new DateTimeZone('Europe/Brussels');
$age = DateTime::createFromFormat('Y-m-d H:i:s', '1990-09-12 00:00:00', $timezone)
->diff(new DateTime('now', $timezone))
->y;
return $age;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment