How can I achieve a similar effect to ‘date_default_timezone_set’ in PHP4? I need to use the date() function while taking into account local time zones and also day light saving.
Edit: example with putenv:
putenv('TZ=Australia/Victoria');
echo date('l jS \of F Y h:i:s A');
Outputs
Thursday 6th of October 2011 07:36:49 PM
Actual time here in Victoria
Friday 7th October 2011 06:36:49 AM
No solution came from this question. I ended up doing a manual work around using the Flash Player.