Displaying Date from database PHP

前端 未结 2 862
春和景丽
春和景丽 2020-12-22 02:18

right now I\'m storing a date in the database, in the format date(\"Y-m-d\") and im storing it in date column.

Now, I\'ve retrieved it from the database

相关标签:
2条回答
  • 2020-12-22 02:25

    Use date_format in your SQL query.

    Example: date_format(somefield, '%d-%m-%Y, %h:%i %p')

    0 讨论(0)
  • 2020-12-22 02:37

    Convert the date to a timestamp using strtotime and format it using date.

    echo date('F jS Y', strtotime($databaseDate));
    

    The preferred way going forward should be the use of the DateTime class though:

    date_default_timezone_set('Asia/Tokyo');
    
    $date = new DateTime($databaseDate);
    echo $date->format('F jS Y');
    
    0 讨论(0)
提交回复
热议问题