如何将 LDAP 时间戳转换为 Unix 时间戳

2022-01-13 00:00:00 timestamp ldap php

当我使用 PHP 检索 Active Directory 的 LDAP 属性pwdLastSet"时,我得到一个类似于 1.29265206716E+17 的值.我知道这个值代表日期2010 年 8 月 17 日星期二 14:11:11 GMT+0200".

When I retrieve the LDAP attribute "pwdLastSet" of an Active Directory using PHP I get a value like 1.29265206716E+17. I know that this value represents the date "Tue Aug 17 2010 14:11:11 GMT+0200".

如何在 PHP 中将此值转换为 Unix 时间戳?感谢您的任何提示!

How can I convert this value to a Unix timestamp in PHP? Thanks for any hints!

推荐答案

请看这里.

实际上归结为将 FILETIME 时间戳转换为 UNIX 时间戳:

Actually it boils down to converting the FILETIME timestamp into a UNIX timestamp:

$fileTime = "130435290000000000";
$winSecs       = (int)($fileTime / 10000000); // divide by 10 000 000 to get seconds
$unixTimestamp = ($winSecs - 11644473600); // 1.1.1600 -> 1.1.1970 difference in seconds
echo date(DateTime::RFC822, $unixTimestamp);

相关文章