Tuesday, June 7, 2011

How to get the current time in a timezone of choice

type this in a php page to get the time where you live. The -6 means go to 6 hours before greenwhich time.
$tz = -6;
$date = gmdate('m/d/Y', time()+($tz*3600));
echo $date;

No comments: