Jump to content

Need to translate datetime from 10 digit to standard date


systemsgotyou

Recommended Posts

Hello, I need the php way to take this kind of mysql datetime field:

 

1390146482

 

and make it into this kind:

 

19/01/2014

 

 

I already know how to get and insert, I just need some help with translation. This datetime thing is confusing!

In SQL you would need FROM_UNIXTIME() function first, then you can format it

mysql> SELECT DATE_FORMAT(FROM_UNIXTIME(1390146482), '%d/%m/%Y') as date;
+------------+
| date       |
+------------+
| 19/01/2014 |
+------------+

Not sure why you'd want to save the formatted date. Raw unformatted data should be stored, you'd format the data to your chosing when you go to display it.

 

If you want to save the formatted date to all records then I guess you can use an update query

UPDATE table SET formatted_date_field = DATE_FORMAT(FROM_UNIXTIME(non_formated_date_field), '%d/%m/%Y');

When storing dates use column type DATE, format YYYY-MM-DD.

 

DD/MM/YYYY is as much use in a database as a chocolate teapot. You can't compare dates, sort them or use date time functions with that format.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.