Skip to content

Instantly share code, notes, and snippets.

@zvineyard
Created June 21, 2012 14:18
Show Gist options
  • Save zvineyard/2966002 to your computer and use it in GitHub Desktop.
Save zvineyard/2966002 to your computer and use it in GitHub Desktop.
PHP: Convert File Timestamp to Unix Timestamp
function file_to_unix_time($file_time,$round=true) {
if ($round) {
return round(($file_time - 116444736000000000) / 10000000);
}
return ($file_time - 116444736000000000) / 10000000;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment