Format date from database?

后端 未结 5 1568
半阙折子戏
半阙折子戏 2020-12-01 05:45

When I pull the date out of the db, it comes back like this:

2009-10-14T19:00:00

I want to format it in two different ways...

The first: F d, Y The s

相关标签:
5条回答
  • 2020-12-01 06:00

    Best of all and clear

    $res_tbl ='select create_date from tbl_comments';
    while($table =mysql_fetch_array($res_tbl))
    {
      echo date('F d, Y h:mA', strtotime($table['create_date']));
      echo "<br>";
    }
    

    Output:

    January 10, 2009 21:12
    March 21, 2001  12:04
    
    0 讨论(0)
  • 2020-12-01 06:02

    Simple date display function :

     echo date('m-d-Y H:i:s',strtotime($date_variable));
    
    0 讨论(0)
  • 2020-12-01 06:07

    If you want to format it in the database (assuming MySQL):

    SELECT DATE_FORMAT(t.column, '%M %D, %Y'), --October 14, 2009
           DATE_FORMAT(t.column, '%h:%i %p') --hh:mm am/pm
      FROM TABLE t
    

    ...or if you want to do the conversion in PHP:

    echo date('F d, Y h:mA', strtotime('2009-10-14 19:00:00'));
    

    Reference:

    • MySQL DATE_FORMAT
    • PHP strtotime
    0 讨论(0)
  • 2020-12-01 06:11

    Normally the code is just:

    echo date('F d, Y h:mA', strtotime('2009-10-14 19:00:00'));
    

    Note that if strtotime() can't figure out the date, it returns the time as 1/1/1970 00:00:00 GMT.

    0 讨论(0)
  • 2020-12-01 06:18

    You might wanna check strtotime

    0 讨论(0)
提交回复
热议问题