| | |
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
| Thread Tools | Search this Thread |
ajax apache api array basics beginner binary bounce broken cakephp checkbox class cms code codingproblem combobox cron curl database date display dynamic echo email error file files folder form forms function functions google href htaccess html image include insert integration interactive ip java javascript joomla js limit link login mail menu mlm mobile multiple mysql nodes oop outofmemmory paging parse paypal pdf php problem procedure query radio ram random recursion regex remote return script search server sessions smash sms soap source space sql syntax system table tutorial up-to-date update upload url validation validator variable video web webapplications websitecontactform xml youtube





