Skip to content

Instantly share code, notes, and snippets.

@Morasta
Created July 9, 2014 22:29
Show Gist options
  • Save Morasta/eb350a6f86ede3d40ec3 to your computer and use it in GitHub Desktop.
Save Morasta/eb350a6f86ede3d40ec3 to your computer and use it in GitHub Desktop.
<?php
function win_time($timestr) {
return substr($timestr, 4, 2) . "/" . substr($timestr, 6, 2) . "/" .
substr($timestr, 0, 4) . " " . substr($timestr, 8, 2) . ":" .
substr($timestr, 10, 2) . ":" . substr($timestr, 12, 2) . " " .
substr($timestr, -4);
};
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment