| | |
Time Stamp
Please support our PHP advertiser: PostgreSQL or MySQL? Compare and contrast the two most popular open source databases
Thread Solved |
•
•
Join Date: Jan 2008
Posts: 74
Reputation:
Solved Threads: 5
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,
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,
•
•
Join Date: Apr 2008
Posts: 53
Reputation:
Solved Threads: 10
Here is a customised function I use:
you would then call
You could call
PHP Syntax (Toggle Plain Text)
function EpochDate($timestamp, $format = "Y-m-d H:i:s") { $final_timestamp = date($format, mktime(0 , 0, $timestamp, 1, 1, 1970)); return($final_timestamp); }
you would then call
EpochDate("1252386167") You could call
EpochDate("1252386167", "d m Y H:i") or whatever suits for a different date format ![]() |
Similar Threads
- time stamp (Java)
- How to convert UNIX time stamp to syatem time stamp (C++)
- time-stamp (PHP)
- Convert time stamp to date using php (PHP)
- Need real time in XP (Visual Basic 4 / 5 / 6)
- Recording time stamp (PHP)
- Code Snippet: Get and set a file's date and time stamp (Pascal and Delphi)
Other Threads in the PHP Forum
- Previous Thread: Customizable Object
- Next Thread: Problem with PDFLib
Views: 299 | Replies: 3
| Thread Tools | Search this Thread |
Tag cloud for PHP
.htaccess access ajax apache api array beginner binary broken cakephp checkbox class cms code cron curl customizableitems database date directory display download dynamic echo email error file files folder form format forms forum function functions google headmethod href htaccess html image include insert integration ip java javascript joomla jquery limit link login loop mail malfunctioning menu methods mlm mod_rewrite multiple mysql oop parse paypal pdf php problem query radio random recursion regex remote script search select server sessions sms soap source space speed sql structure syntax system table tutorial update updates upload url validation validator variable video web xml youtube





