Publicidad

Fechas en PHP


Por Alex el 02/10/2016, Comentar el artículo

Comparte este artículo:      




Como tratar las fechas en PHP siempre ha dado dolor de cabeza, que si formato MySql, que si formato web en español, en ingles. Por suerte con PHP y el comando date es muy sencillo manejar fechas.


Formatear fechas en php con el comando date es muy sencillo

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.



Si te ha gustado el artículo compartelo en:      




Añadir un comentarios:

Nombre:
Email: (no se publica el email)




SIGUENOS EN

ARCHIVO

Publicidad

.