Skip to content

Instantly share code, notes, and snippets.

@jgdoncel
Created January 31, 2014 11:44
Show Gist options
  • Save jgdoncel/c0d9756788a257e69fbf to your computer and use it in GitHub Desktop.
Save jgdoncel/c0d9756788a257e69fbf to your computer and use it in GitHub Desktop.
Manejo de fechas
// Ultimo día del mes actual
$ultimoDia = date('Y/m/t').' 23:59:59';
echo $ultimoDia;
// Sumar segundos a una fecha
$time = strtotime('2013-09-18 11:00:00+25200 seconds');
echo date('H:i',$time);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment