Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can any one explain to me why the line of code:

Date("l F d, Y","2013-01-25T01:42:16.411Z")

Is returning:

Wednesday December 31, 1969

And not:

Wednesday January 25, 2013
share|improve this question
-1 for not reading the documentation – bažmegakapa Jan 25 at 1:50

1 Answer

up vote 4 down vote accepted

The second parameter for date() is a Unix timestamp, not a formatted string:

date("l F d, Y",strtotime("2013-01-25T01:42:16.411Z"));

I used strtotime() to convert it to a Unix timestamp before formatting it with date();

share|improve this answer
1  
there goes my answer – tomexsans Jan 25 at 1:47
More specifically the timestamp needs to be a Unix timestamp that would look something like this when processed: 1359099736 and strtotime will parse human readable times into that string of numbers Unix loves. – JakeGould Jan 25 at 1:48
Good point, Jake. – John Conde Jan 25 at 1:49

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.