I am making a web application that connects to user's Dropbox account. When i retrieve metadata of files and folders, Dropbox returns corresponding modified dates on following format:

"Sat, 21 Aug 2010 22:31:20 +0000"

How can i convert this to following format?

21/08/2010 22:31

Any help will be much appreciated.

link|improve this question

43% accept rate
feedback

4 Answers

up vote 5 down vote accepted

Many questions on formatting dates, you should find what you are looking for by searching.

Here a quicky:

echo date("d/m/Y H:i", strtotime($sOriginalformat));
link|improve this answer
feedback

You could use the function strtotime(). Have a look at the Manual.

link|improve this answer
feedback
strtotime("Sat, 21 Aug 2010 22:31:20 +0000");
link|improve this answer
Thanks. But that was what I was doing. But I was getting 1306315565 as a result. Doesnt make any sense to me. – Prashant Palikhe May 25 '11 at 14:41
@Prashant That's a UNIX timestamp. strtotime converts the time into an integer that represents the time. date can then interpret this value and format it as you wish. – lonesomeday May 25 '11 at 14:44
Thank you very much Arun. Good to have learned this:) – Prashant Palikhe May 25 '11 at 14:45
date("d/m/Y H:i",strtotime("Sat, 21 Aug 2010 22:31:20 +0000")); – Arun David May 25 '11 at 14:47
feedback

You can use strtotime. If you might ever want to do more complex things, have a look at the DateTime class. It is powerful and intuitive -- I think it's more transparent than mucking around with the timestamp yourself.

$dt = new DateTime($sOriginalFormat);
$sNewFormat = $dt->format("d/m/Y H:i");
link|improve this answer
precisely what i wanted:) Thanks a lot. – Prashant Palikhe May 25 '11 at 14:45
feedback

Your Answer

 
or
required, but never shown

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