How do you create a DateTime from timestamp in versions less than < 5.3?

In 5.3 it would be:

$date = DateTime::createFromFormat('U', $timeStamp);

The DateTime constructor wants a string, but this didn't work for me

$date = new DateTime("@$timeStamp");
link|improve this question

80% accept rate
1  
According to the manual, that should work. Have you tried $date = new DateTime('@' . $timeStamp); ? And by "didn't work", what do you mean? – Jonah Dec 1 '10 at 22:45
1  
Define didn't work for me. Errors? Wrong date/time? – Felix Kling Dec 1 '10 at 22:46
Fatal error: Uncaught exception 'Exception' with message 'DateTime::__construct() [<a href='datetime.--construct'>datetime.--construct</a>]: Failed to parse time string (@) at position 0 (@): Unexpected character' – Yarin Dec 1 '10 at 22:55
@Jonah, I tried your method- same error – Yarin Dec 1 '10 at 22:55
1  
@Yarin: It's giving you that error because the timestamp is empty. Find out why. – Jonah Dec 1 '10 at 23:15
show 1 more comment
feedback

4 Answers

The following works:

$dateString = date('Ymd', $timeStamp);
$date = new DateTime($dateString);
link|improve this answer
feedback

Assuming you want the date and the time and not just the date as in the previous answer:

$dtStr = date("c", $timeStamp);
$date = new DateTime($dtStr);

Seems pretty silly to have to do that though.

link|improve this answer
feedback

It's not working because your $timeStamp variable is empty. Try echoing the value of $timeStamp right before creating the DateTime and you'll see. If you run this:

new DateTime('@2345234');

You don't get an error. However, if you run:

new DateTime('@');

It produces the exact error you said it gives you. You'll need to do some debugging and find out why $timeStamp is empty.

link|improve this answer
feedback

PHP 5 >= 5.2.0

$date = new DateTime();
$date->setTimestamp($timeStamp);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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