up vote 3 down vote favorite
share [g+] share [fb]

This is confusing as hell, here's the php I'm using:

<?php echo date('H:i D j, F',$j->date); ?>

This is what it gives me:

01:33 Thu 1, January

Which seems fine, until you look at the actual time that is being given ($j->date provides):

2010-06-12 21:12:23

Why is it giving me a January and what am I doing wrong?

link|improve this question

feedback

2 Answers

up vote 7 down vote accepted

$j->date must provide date() with a standard unix timestamp. take a look at the manual. You might want to pass it through the strtotime() function first.

<?php echo date('H:i D j, F', strtotime($j->date)); ?>

$j->date output must be a US English date format.

link|improve this answer
epic rtfm moment. Thank you very much dude. – Kirill Jun 12 '10 at 22:38
lol, you're welcome ;) – Sepehr Lajevardi Jun 12 '10 at 22:42
feedback

Try this:

<?php echo date('H:i D j, F', strtotime($j->date)); ?>

The date() function only takes a timestamp, not a time string which you are trying to provide it. The strtotime() function will convert it for you before sending it to date().

link|improve this answer
thank you, I think the guy above you stole your answer after you put it in :) accepting his. – Kirill Jun 12 '10 at 22:39
feedback

Your Answer

 
or
required, but never shown

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