Skip to content

Instantly share code, notes, and snippets.

@morrisdj
Created November 25, 2015 16:35
Show Gist options
  • Save morrisdj/6c04a7a329cd007abc60 to your computer and use it in GitHub Desktop.
Save morrisdj/6c04a7a329cd007abc60 to your computer and use it in GitHub Desktop.
Convert MS-DOS datetime (4 byte word) to UNIX time in PHP
/** Converts DOS time to Unix time */
function dosToUnixTime($dosTime) {
$date = mktime(
(($dosTime >> 11) & 0x1f), // hours
(($dosTime >> 5) & 0x3f), // minutes
(($dosTime << 1) & 0x3e), // seconds
((($dosTime >> 21) & 0x0f) - 1), // month
(($dosTime >> 16) & 0x1f), // day
((($dosTime >> 25) & 0x7f) + 1980) // year
);
return $date;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment