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

How to convert LDAP timestamp to Unix timestamp(如何将 LDAP 时间戳转换为 Unix 时间戳)
本文介绍了如何将 LDAP 时间戳转换为 Unix 时间戳的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我使用 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);

这篇关于如何将 LDAP 时间戳转换为 Unix 时间戳的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Convert JSON integers and floats to strings(将JSON整数和浮点数转换为字符串)
in php how do I use preg replace to turn a url into a tinyurl(在php中,如何使用preg替换将URL转换为TinyURL)
all day appointment for ics calendar file wont work(ICS日历文件的全天约会不起作用)
trim function is giving unexpected values php(Trim函数提供了意外的值php)
Basic PDO connection to MySQL(到MySQL的基本PDO连接)
PHP number_format returns 1.00(Php number_Format返回1.00)