Skip to content

Instantly share code, notes, and snippets.

@1stevengrant
Created August 17, 2011 09:40
Show Gist options
  • Save 1stevengrant/1151202 to your computer and use it in GitHub Desktop.
Save 1stevengrant/1151202 to your computer and use it in GitHub Desktop.
displays world times
<?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