Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created May 5, 2020 05:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/0b9cba70d52bab7a34125248e786020a to your computer and use it in GitHub Desktop.
Save parzibyte/0b9cba70d52bab7a34125248e786020a to your computer and use it in GitHub Desktop.
<?php
function obtener_edad_segun_fecha($fecha_nacimiento)
{
$nacimiento = new DateTime($fecha_nacimiento);
$ahora = new DateTime(date("Y-m-d"));
$diferencia = $ahora->diff($nacimiento);
return $diferencia->format("%y");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment