如何让用户访问我的网站的当前时间/时区?(How to get the current time/t

2019-11-03 06:20发布

我的工作,它利用PHP(Zend框架)和JavaScript(jQuery的)的应用程序。

我试图让用户访问该网站的当前时间。 这可能吗? 如何才能做到这一点?

Answer 1:

改编自: http://kennyshu.blogspot.com/2009/05/javascript-get-clients-timezone.html

  <script type="text/javascript"> 
  var gmtOffset
  function timezone()  
  {  
    var localTime = new Date();  
    //this one will give you the GMT offset  
    gmtOffset = localTime.getTimezoneOffset()/60 * (-1);  
  }  
  </script>

然后回发变量gmtOffset到您的应用程序。



Answer 2:

你可以得到自己的IP,并通过Web服务或数据库,其中我敢肯定有人会用回复,或已经在重复的问题回答查找。 :-)



文章来源: How to get the current time/timezone of the user visiting my website?