dreamci Posted July 12, 2008 Share Posted July 12, 2008 hello i want to ask something, i put the time in my database with time(); function it gives me something like 1215873559 so how can i convert this to a date like ; 12 July 2008 , 20:13 (20 is the hour 13 is the minute) thanks Link to comment https://forums.phpfreaks.com/topic/114422-solved-easy-date-problem/ Share on other sites More sharing options...
JasonLewis Posted July 12, 2008 Share Posted July 12, 2008 With date(): $time = time(); $date = date("jS F Y, H:i", $time); For different format options check out date(). Link to comment https://forums.phpfreaks.com/topic/114422-solved-easy-date-problem/#findComment-588388 Share on other sites More sharing options...
talor123 Posted July 12, 2008 Share Posted July 12, 2008 i just use this putenv('TZ=Australia/Sydney'); $time= ''.date('Y-m-d--H:i:s-A').''; echo $time; it will show in this format: 2008-07-12--22:33:46-PM heres more info which youll probly need: timezones: http://au2.php.net/datetime how to display the time(eg hour/minute/second): http://au2.php.net/manual/en/function.date.php Link to comment https://forums.phpfreaks.com/topic/114422-solved-easy-date-problem/#findComment-588391 Share on other sites More sharing options...
dreamci Posted July 12, 2008 Author Share Posted July 12, 2008 works great as i wanted thank you much Link to comment https://forums.phpfreaks.com/topic/114422-solved-easy-date-problem/#findComment-588392 Share on other sites More sharing options...
JasonLewis Posted July 12, 2008 Share Posted July 12, 2008 i just use this putenv('TZ=Australia/Sydney'); $time= ''.date('Y-m-d--H:i:s-A').''; echo $time; it will show in this format: 2008-07-12--22:33:46-PM heres more info which youll probly need: timezones: http://au2.php.net/datetime how to display the time(eg hour/minute/second): http://au2.php.net/manual/en/function.date.php The OP wanted to convert time() into a date string. Link to comment https://forums.phpfreaks.com/topic/114422-solved-easy-date-problem/#findComment-588396 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.