Seconds Into Timestamp

Is there a php function what will turn “time()+3600” into a YYYY-MM-DD HH:MM:SS timestamp? I’ve been through the manual’s and nothing stuck-out.

Almost.

Y-m-d H:i:s (You put month in for minutes. common mistake. ;))

Then there’s hope for me yet! Thanks drjamescook and StarLion for you help I was looking at the answer, but couldn’t see it without your help.

date("Y-m-d H:m:s", time()+3600);

Look at PHP’s date() function. It’s priceless!

Whoops! My bad. That’s what I get for doing it off the top of my head!