douyi3632 2013-10-04 13:59
浏览 71
已采纳

显示DB时间戳的时间和日期

I am trying to print a date and time stored in a DB.

Here is my code

 print date("d-m-y H:i",strtotime($created));

This shows the date as 01-01-70 01:00 however the date in the DB is 2013-10-04 14:18:17

Can anyone help?

  • 写回答

2条回答 默认 最新

  • drurhg37071 2013-10-04 14:32
    关注

    you sure about that ? i test it and got worked :

    date("d-m-y H:i",strtotime('2013-10-04 14:18:17')); // output : 04-10-13 14:18
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?