Created
August 17, 2011 09:40
-
-
Save 1stevengrant/1151202 to your computer and use it in GitHub Desktop.
displays world times
This file contains hidden or 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 | |
// get the time for use in the clocks | |
$now = time(); | |
date_default_timezone_set("Europe/London"); echo date("D H:i T", $now); | |
date_default_timezone_set("Asia/Kuala_Lumpur"); echo date("D H:i T", $now); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment