Work:Change Script Timezone
From Zoelife4U Wiki
This is how you fool your PHP scripts into believing they're running in a different timezone than they really are.
<? echo "Original Time: ". date("h:i:s")."\n"; putenv("TZ=US/Eastern"); echo "New Time: ". date("h:i:s")."\n"; ?>
See http://home.tiscali.nl/~t876506/TZworld.html for a complete list of timezone zone names.