Time Stamp

Thread Solved

Join Date: Jan 2008
Posts: 74
Reputation: Vai is an unknown quantity at this point 
Solved Threads: 5
Vai Vai is offline Offline
Junior Poster in Training

Time Stamp

 
0
  #1
Sep 8th, 2009
How do I make the timestamp string be displayed as something that is actually readable / understandable? Yes, I have looked on google, here and a couple other places, but I am not seeing anything too specific or I am just not understand. Thank you for your understanding, helping me out and not being too critical.

Here is what I have:

In the database:
timestamp int(11) unsigned

and it inserts it like this:
1252386167

Using Php to display Last Active it displays it like this:
1252410826

Thank you,
Reply With Quote Quick reply to this message  
Join Date: Apr 2008
Posts: 53
Reputation: SimonMayer is an unknown quantity at this point 
Solved Threads: 10
SimonMayer SimonMayer is offline Offline
Junior Poster in Training

Re: Time Stamp

 
1
  #2
Sep 8th, 2009
Here is a customised function I use:

  1. function EpochDate($timestamp, $format = "Y-m-d H:i:s")
  2. {
  3. $final_timestamp = date($format, mktime(0 , 0, $timestamp, 1, 1, 1970));
  4. return($final_timestamp);
  5. }

you would then call EpochDate("1252386167")
You could call EpochDate("1252386167", "d m Y H:i") or whatever suits for a different date format
Regards,

Simon Mayer
Website design by Ribbontree
Reply With Quote Quick reply to this message  
Join Date: Jan 2008
Posts: 74
Reputation: Vai is an unknown quantity at this point 
Solved Threads: 5
Vai Vai is offline Offline
Junior Poster in Training

Re: Time Stamp

 
0
  #3
Sep 8th, 2009
thank you..
Reply With Quote Quick reply to this message  
Join Date: Aug 2009
Posts: 25
Reputation: Rkeast is an unknown quantity at this point 
Solved Threads: 2
Rkeast Rkeast is offline Offline
Light Poster

Re: Time Stamp

 
0
  #4
Sep 8th, 2009
I was too slow on this, but use the date() function.

http://us.php.net/manual/en/function.date.php
Reply With Quote Quick reply to this message  
Reply

This thread has been marked solved.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the PHP Forum


Views: 299 | Replies: 3
Thread Tools Search this Thread



Tag cloud for PHP
About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC