开发者

What happened on Dec 31 1969 at 7:00 PM

开发者 https://www.devze.com 2022-12-22 05:47 出处:网络
Every time in PHP when I make a variable such as this one: $date = strtotime($row[\'date\']); $date = date(\"M d Y \\a\\\\t g:i A\", $date); // Mmm 开发者_高级运维dd YYYY at h:mm PM/AM

Every time in PHP when I make a variable such as this one:

$date = strtotime($row['date']);
$date = date("M d Y \a\\t g:i A", $date); // Mmm 开发者_高级运维dd YYYY at h:mm PM/AM

and somehow row['date'] happens to be 0, the date Dec 31 1969 at 7:00 PM is displayed on the screen? Google does not tell me much, I was wondering if this date had any significances.


The Unix epoch is the time 00:00:00 UTC on 1 January 1970. This is the reference point for all time stamps. When you use PHP's date/time functions, you're always working with the number of seconds since the epoch. Time 0 is the epoch, and you (or your web server) must be on the east coast of the US, which is 5 hours behind UTC time.


I find it funny that not a single response here attempted to answer your actual question, which was (if I can paraphrase) "What is the significance of the actual date of Unix epoch time"?

I'm not an expert on the subject but basically, as I understand it, the concept of epoch time was invented in 1971. The programmers chose the arbitrary date of January 1, 1971 GMT to be epoch time. This was partly due to the fact that older computers couldn't handle large numbers so the date had to be in the recent past. Afterwards, epoch time was adjusted to be Jan 1, 1970 so as to be a nice, round number.

So basically, nothing "happened" on that date. It was an arbitrary date chosen based on the original time of the work being done.


Unix timestamps are measured in "time since the Unix Epoch", which is Midnight GMT at the end of Dec. 31 1969 (a.k.a. 00:00 GMT Jan 1 1970). Since you appear to be on Eastern Standard Time, which is GMT-5, you get 7pm Dec. 31st 1969 for a unix timestamp value of 0.


Let me guess: you live on the east coast of the USA?

PHP, like many other systems uses the Unix epoch to measure time, i.e. a value of 0 represents January 1, 1970, midnight UTC - which is the same as Dec 31 1969 at 7:00 PM Eastern Standard Time.


One format in which date objects are stored is the time in seconds that have elapsed from an arbitrary start time. Asking for a formatted version of "0" is like asking for that arbitrary start time. I don't remember why that date was chosen, but I'm sure Wikipedia does. See the article on Unix time below.

Read about Unix Time

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号