duanhan4763 2014-07-28 12:28
浏览 51
已采纳

Drupal在SQL中创建了时间戳?

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.

  • 写回答

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
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?