So when user are created in drupal website it creates a table row in SQL database, everybody knows that, but there is column created
witch stands for create date. It contains int
type, something like this 1341319209
. I checked, it isn't the milliseconds from 01.01.1970.
The question is how can I convert it to normal date format using php or SQL Query? I tried to find how drupal does that, bet no success. Can someone please help. Write some code or give me a clue. :) Thanks.

Drupal在SQL中创建了时间戳?
- 写回答
- 好问题 0 提建议
- 关注问题
- 邀请回答
-
1条回答 默认 最新
- doucai9270 2014-07-28 12:34关注
You may try this:
MAKETIME( seconds / (60*60), seconds / 60, seconds % 60 )
or you may also try to use FROM_UNIXTIME()
SELECT from_unixtime(timestamp) FROM your_table
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报