dongwo5940 2016-03-02 02:29
浏览 42
已采纳

如何更改db [php]中存储的日期格式?

I am storing date time in database as $date=date("Y-m-d H:i:s"); Now on most places I use it in the same format as it is stored 2016-03-01 19:04:18, but on one place I would rather prefer output to be March 01 at 19:04 how can I change format of output from database from 2016-03-01 19:04:18 to March 01 at 19:04.

  • 写回答

2条回答 默认 最新

  • dongsigan2044 2016-03-02 02:42
    关注

    Working with dates in PHP

    First of all we will need to retrieve the date from the database. You can do this however you please.

    What we are going to do next is to pass your date to a PHP DateTime object. This will give us easy options to modify the format to our liking.

    // $dbDate is the date you got from your database
    $date = new DateTime($dbDate);
    
    // If we want to make sure PHP uses the correct date format,
    // We can also use createFromFormat
    $date = DateTime::createFromFormat('Y-m-d H:i:s', $dbDate);
    

    Now that we have this object we are going to output it in the format you want it to be.

    echo $date->format('M d').' at '.$date->format('H:i');
    
    // M - Textual representation of the month ex. January, February, March
    // d - Day of month in numeric value ex 1, 14, 27
    // H - 24-hours representation of the hour ex 17, 23, 08
    // i - Minutes ex 23, 45, 58
    

    For more parameters and information:
    PHP.net - DateTime()

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部