Created
July 9, 2014 22:29
-
-
Save Morasta/eb350a6f86ede3d40ec3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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