Reputation: 641
I have a date field in mysql that contains numbers like 2455419. Any idea what format this is and how to convert to php/human eadable form?
Upvotes: 0
Views: 162
Reputation: 22349
Seems to be Unix Timestamp. You can convert it to human readable form by using date() function of PHP.
Upvotes: 2