Quick time convert

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
sk8erh4x0r
Forum Commoner
Posts: 43
Joined: Wed May 26, 2004 8:27 pm

Quick time convert

Post by sk8erh4x0r »

can anyone tell me what time this is "1123400177" in 'h:i:s A T' format?
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

what's so hard about writing a quick script yourself?

Code: Select all

[feyd@nowhere]> php -r "echo(date('h:i:s A T',1123400177));"
03:36:17 AM Eastern Standard Time
Post Reply