Top "Unix-timestamp" questions

The number of seconds between a particular date and the Unix Epoch on January 1st, 1970

How to convert a 13 digit Unix Timestamp to Date and time?

I have this 13 digit timestamp 1443852054000 that i want to convert to date and time but dont succeed. I have tried …

php timestamp unix-timestamp
Unix timestamp in sqlite?

How do you obtain the current timestamp in Sqlite? current_time, current_date, current_timestamp both return formatted dates, instead …

sqlite timestamp unix-timestamp
How to get Unix timestamp in php based on timezone

Code first echo time() . '<br/>'; echo date('Y-m-d H:i:s') . '<br/>'; …

php timezone unix-timestamp
How to get the day of the week from a Unix timestamp (PHP)?

How do I get the day (1-7) from a Unix timestamp in PHP? I also need the day date (1-31) …

php unix-timestamp weekday
Convert date to unix timestamp in postgresql

I have a table with a column abc carrying the unix timestamp (eg. 13898161481435) and I want to run a between …

postgresql date unix-timestamp
Formatting date to human readable format

Lets say in my mysql database I have a timestamp 2013-09-30 01:16:06 and lets say this variable is $ts. How …

php mysql unix-timestamp date-formatting
Unix time conversions in C#

I am trying to get the GMT in unix time. I use the following code: public static long GetGMTInMS() { var …

c# .net datetime unix-timestamp
How to work with Unix timestamps in Matlab?

I have some data files with Unix timestamps (in this case, number of milliseconds since Jan 1, 1970 00:00 UTC). I would like …

matlab unix-timestamp
How can I convert a Unix timestamp back to time?

I have the following Unix timestamps. 1301982430 1301982430 1301981474 1301981466 1301981466 1301981066 1301981058 1301981058 1301980388 1301980373 1301980373 1301979082 1301978478 1301978478 1301978478 How do I convert it back to time that's human friendly? This doesn't seem …

php time unix-timestamp
How to get Timestamp of UTC time with Golang?

I want to convert UTC time string to unix timestamp. I do this fmt.Printf("%s %d\n", time.Now().…

go timestamp unix-timestamp