最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

php - why do we need to calculate time from year 1970? - Stack Overflow

programmeradmin1浏览0评论

In most of the Programming or scripting language such as PHP or JavaScript, i have e across the time function which tends to calculate the time from year 1970. for example in javascript if i use the function getTime() or in PHP the time() it returns an integer value.

In PHP.

the code with <?php echo time(); ?> returns an integer value of 1281694425, what does the value returned by the PHP explains? how and when it is useful?

the same in javascript the getTime() returns the float value since 1970 as it says. by using the below script in JS

<script type="text/javascript">
var d=new Date();
document.write(d.getTime() + " milliseconds since 1970/01/01");
</script>

i want to know when is this type of functions useful to use? and how do we use it?

P.S: is it useful for calculating the time interval? or it is used for storing the current time stamp?

In most of the Programming or scripting language such as PHP or JavaScript, i have e across the time function which tends to calculate the time from year 1970. for example in javascript if i use the function getTime() or in PHP the time() it returns an integer value.

In PHP.

the code with <?php echo time(); ?> returns an integer value of 1281694425, what does the value returned by the PHP explains? how and when it is useful?

the same in javascript the getTime() returns the float value since 1970 as it says. by using the below script in JS

<script type="text/javascript">
var d=new Date();
document.write(d.getTime() + " milliseconds since 1970/01/01");
</script>

i want to know when is this type of functions useful to use? and how do we use it?

P.S: is it useful for calculating the time interval? or it is used for storing the current time stamp?

Share Improve this question edited Dec 21, 2010 at 18:35 Your Common Sense 158k42 gold badges225 silver badges368 bronze badges asked Aug 13, 2010 at 10:21 Ibrahim Azhar ArmarIbrahim Azhar Armar 25.8k36 gold badges135 silver badges212 bronze badges 2
  • 1 What is your question? Why epoch times are used, or how to use them? – Oded Commented Aug 13, 2010 at 10:22
  • both. i mean when is the function useful(ex: current time stamp etc). and how do we use it if it returns the value in miliseconds? – Ibrahim Azhar Armar Commented Aug 13, 2010 at 10:24
Add a ment  | 

3 Answers 3

Reset to default 7

It give you the seconds which passed by since the 1st January 1970. This is useful fore several reasons:

  1. Sorting of dates is as simple as sorting integers.
  2. Its easy to get the length of an interval, simple do t1-t2 and you get the difference in seconds again.
  3. No need to handle different date-formats (like MM/DD/YY or DD/YY/MM): Every programming language and every database supports integers.

If you want to know the history of this time representation, look at this: http://en.wikipedia/wiki/Unix_time.

It means you if you recalculate the time from the integer in another time zone you will get the correct time for whichever timezone is accessing it. I believe :-)

发布评论

评论列表(0)

  1. 暂无评论