Created
January 31, 2014 11:44
-
-
Save jgdoncel/c0d9756788a257e69fbf to your computer and use it in GitHub Desktop.
Manejo de fechas
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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