date( "d/m/Y") #Fecha en formato español
date( "d/m/Y H:s:i) #Fecha y hora
Fecha en formato MySql
date( "Y-m-d H:i:s")
Restar o sumar días a la fecha. Restar un día a la fecha de hoy
date( "d/m/Y H:i:s", strtotime( "-1 day"))
date( "d/m/Y H:i:s", strtotime( "+1 day"))
Resta o sumar un mes a la fecha de hoy
date( "d/m/Y H:i:s", strtotime( "-1 Month"))
date( "d/m/Y H:i:s", strtotime( "+1 Month"))
Restar o sumar un año
date( "d/m/Y H:i:s", strtotime( "-1 Year"))
date( "d/m/Y H:i:s", strtotime( "+1 Year"))
Calcular el timestamp de una fecha
strtotime ( date( "d/m/Y H:i:s"))
Los valores del comando date "d/m/Y H:i:s" se pueden sustituir por una variable tipo fecha.
Podéis encontrar mas información sobre el comando date en la web de ayuda de php http://php.net/manual/es/function.date.php
Y esto es todo, feliz programming!!
Saludos
Alex.
También puede interesarte:
Configurar Laravel Sail para utilizar un MySql externo existente |
||