Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
2011-07-13 02:38:31

^ MySQL format.

I would like to use PHP to convert it to another format like , July 13, 2011 2:38 am.

share|improve this question

3 Answers

up vote 5 down vote accepted
<?php
$time_from_db = '2011-07-13 02:38:31';

echo date('F j, Y g:i a', strtotime($time_from_db));
?>
share|improve this answer
echo date("F j, Y g:i a", strtotime("2011-07-13 02:38:31"));

demo

share|improve this answer
"H 24-hour format of an hour with leading zeros" – Shef Jul 17 '11 at 18:34
edited! demo (you could remove your downvote,maybe?) – genesis Jul 17 '11 at 18:35
"G 24-hour format of an hour without leading zeros" – Shef Jul 17 '11 at 18:37
yep I edited it 1 minute ago already ;) – genesis Jul 17 '11 at 18:37
Yes, which is exactly like mine posted 8mins ago. I removed the down vote obviously. – Shef Jul 17 '11 at 18:38
show 1 more comment
$yourdatevar = date("F j, Y, g:i a", strtotime($yourdatevar)); // March 10, 2001, 5:16 pm

Taken right from: http://php.net/manual/en/function.date.php

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.