• <small id='GSIOh'></small><noframes id='GSIOh'>

    <legend id='GSIOh'><style id='GSIOh'><dir id='GSIOh'><q id='GSIOh'></q></dir></style></legend><tfoot id='GSIOh'></tfoot>
    <i id='GSIOh'><tr id='GSIOh'><dt id='GSIOh'><q id='GSIOh'><span id='GSIOh'><b id='GSIOh'><form id='GSIOh'><ins id='GSIOh'></ins><ul id='GSIOh'></ul><sub id='GSIOh'></sub></form><legend id='GSIOh'></legend><bdo id='GSIOh'><pre id='GSIOh'><center id='GSIOh'></center></pre></bdo></b><th id='GSIOh'></th></span></q></dt></tr></i><div id='GSIOh'><tfoot id='GSIOh'></tfoot><dl id='GSIOh'><fieldset id='GSIOh'></fieldset></dl></div>

      <bdo id='GSIOh'></bdo><ul id='GSIOh'></ul>

        在 Linux Box 上使用 PHP 将 Windows 时间戳转换为日期

        Convert Windows Timestamp to date using PHP on a Linux Box(在 Linux Box 上使用 PHP 将 Windows 时间戳转换为日期)
      1. <i id='X3wGB'><tr id='X3wGB'><dt id='X3wGB'><q id='X3wGB'><span id='X3wGB'><b id='X3wGB'><form id='X3wGB'><ins id='X3wGB'></ins><ul id='X3wGB'></ul><sub id='X3wGB'></sub></form><legend id='X3wGB'></legend><bdo id='X3wGB'><pre id='X3wGB'><center id='X3wGB'></center></pre></bdo></b><th id='X3wGB'></th></span></q></dt></tr></i><div id='X3wGB'><tfoot id='X3wGB'></tfoot><dl id='X3wGB'><fieldset id='X3wGB'></fieldset></dl></div>

          <small id='X3wGB'></small><noframes id='X3wGB'>

          <legend id='X3wGB'><style id='X3wGB'><dir id='X3wGB'><q id='X3wGB'></q></dir></style></legend><tfoot id='X3wGB'></tfoot>
                  <tbody id='X3wGB'></tbody>

                  <bdo id='X3wGB'></bdo><ul id='X3wGB'></ul>
                  本文介绍了在 Linux Box 上使用 PHP 将 Windows 时间戳转换为日期的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我有一个在 linux 机器上运行的 Intranet,它通过 PHP 使用 LDAP 对 Windows 机器上的 Active Directory 进行身份验证.

                  I have an intranet running on a linux box, which authenticates against Active Directory on a Windows box, using LDAP through PHP.

                  我可以使用 LDAP 从 AD 中检索用户的条目,并从 php 数组中访问上次登录日期,例如:

                  I can retrieve a user's entry from AD using LDAP and access the last login date from the php array eg:

                  echo $adAccount['lastlogontimestamp'][0]; // returns something like 129802528752492619
                  

                  如果这是一个 Unix 时间戳,我将使用以下 PHP 代码转换为人类可读的日期:

                  If this was a Unix timestamp I would use the following PHP code to convert to a human readable date:

                  date("d-m-Y H:i:s", $lastlogontimestamp);
                  

                  但是,这不起作用.有谁知道我如何做到这一点,或者是否可以从 Linux 机器上做到这一点?

                  However, this does not work. Does anyone know how I can achieve this or indeed if it is possible to do so from a Linux box?

                  推荐答案

                  根据this,您拥有的 windows 时间戳是自 1601 年 1 月 1 日以来 100 ns 的数量.因此,您可以使用以下公式将其转换为 unix 时间戳:

                  According to this, the windows timestamp you have there is the number of 100-ns since Jan 1st 1601. Therefore, you could just convert it to a unix timestamp using the following formula:

                  tUnix = tWindow/(10*1000*1000)-11644473600;
                  

                  您除以 10*1000*1000 以转换为自 1601 年 1 月 1 日以来的秒数,然后您折扣 11644473600 这是 1601 年 1 月到 1970 年 1 月之间的秒数(unix 时间).

                  You divide by 10*1000*1000 to convert to seconds since Jan 1st 1601 and then you discount 11644473600 which is the number of seconds between Jan 1601 and Jan 1970 (unix time).

                  所以在 PHP 中:

                  date("d-m-Y H:i:s", $lastlogontimestamp/10000000-11644473600);
                  

                  有趣的是,我得到的偏移量与 Baba 不同.我用 Java 得到了我的:

                  Interestingly, I got a different offset than Baba. I got mine with Java:

                  Calendar date1 = Calendar.getInstance(); date1.set(1601, 1, 1);
                  Calendar date2 = Calendar.getInstance(); date2.set(1970, 1, 1);
                  long dt = date2.getTimeInMillis() - date1.getTimeInMillis();
                  System.out.println(String.format("%f", dt / 1000.0)); // prints "11644473600.000000"
                  

                  根据这个 SO:将 Unix/Linux 时间转换为 Windows 时间的方法我的偏移量是正确的.

                  According to this SO: Ways to Convert Unix/Linux time to Windows time my offset is correct.

                  这篇关于在 Linux Box 上使用 PHP 将 Windows 时间戳转换为日期的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Converting string to MySQL timestamp format in php(在php中将字符串转换为MySQL时间戳格式)
                  datetime to timestamp(日期时间到时间戳)
                  PHP timestamp date to user timezone(PHP时间戳日期到用户时区)
                  Converting TIMESTAMP to unix time in PHP?(在 PHP 中将 TIMESTAMP 转换为 unix 时间?)
                  Convert ISO 8601 to unixtimestamp(将 ISO 8601 转换为 unixtimestamp)
                  Finding days between 2 unix timestamps in php(在php中查找2个unix时间戳之间的天数)
                    <bdo id='ZGKch'></bdo><ul id='ZGKch'></ul>
                    <tfoot id='ZGKch'></tfoot>

                          <small id='ZGKch'></small><noframes id='ZGKch'>

                            <tbody id='ZGKch'></tbody>
                        1. <legend id='ZGKch'><style id='ZGKch'><dir id='ZGKch'><q id='ZGKch'></q></dir></style></legend>
                            <i id='ZGKch'><tr id='ZGKch'><dt id='ZGKch'><q id='ZGKch'><span id='ZGKch'><b id='ZGKch'><form id='ZGKch'><ins id='ZGKch'></ins><ul id='ZGKch'></ul><sub id='ZGKch'></sub></form><legend id='ZGKch'></legend><bdo id='ZGKch'><pre id='ZGKch'><center id='ZGKch'></center></pre></bdo></b><th id='ZGKch'></th></span></q></dt></tr></i><div id='ZGKch'><tfoot id='ZGKch'></tfoot><dl id='ZGKch'><fieldset id='ZGKch'></fieldset></dl></div>