开发者

Displaying Date from database PHP

开发者 https://www.devze.com 2023-01-23 02:16 出处:网络
right now I\'m storing a date in the database, in the format date(\"Y-m-d\") and im storing it in date column.

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 retri开发者_C百科eved it from the database but how can i display it like

October 31st 2010

Thanks!


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');


Use date_format in your SQL query.

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

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号