hmdnawaz Posted January 8, 2011 Share Posted January 8, 2011 I have a varaiable which gets the server time; $date =date("Y-m-d H:i:s"); suppose the server is in the USA then it the timezone of this date will be the timezone of USA. And i want to convert this timezone to Asia/Karachi timezone. Any Idea about this??? Quote Link to comment https://forums.phpfreaks.com/topic/223765-how-to-convert-datetime-to-another-datetimezone-in-php/ Share on other sites More sharing options...
dragon_sa Posted January 8, 2011 Share Posted January 8, 2011 putenv("TZ=Asia/Karachi"); $date =date("Y-m-d H:i:s"); Quote Link to comment https://forums.phpfreaks.com/topic/223765-how-to-convert-datetime-to-another-datetimezone-in-php/#findComment-1156622 Share on other sites More sharing options...
hmdnawaz Posted January 8, 2011 Author Share Posted January 8, 2011 What this function do? putenv("TZ=Asia/Karachi"); please send me the complete code step by step Like the following. 1. Get server datetime 2.convert to Asi/Karachi timezone 3. print the converted datetime. Thanks Quote Link to comment https://forums.phpfreaks.com/topic/223765-how-to-convert-datetime-to-another-datetimezone-in-php/#findComment-1156624 Share on other sites More sharing options...
dragon_sa Posted January 8, 2011 Share Posted January 8, 2011 putenv adds setting to the server environment. The environment variable will only exist for the duration of the current request. At the end of the request the environment is restored to its original state. so the code would be -set timezone first to Asia/Karachi -set $date as the current time in Asia/Karachi (this happens because the server environment is now set to that timezone) -print out the date and time putenv("TZ=Asia/Karachi"); $date=date("Y-m-d H:i:s"); echo $date; thats all you need to do all the available timezones are here http://php.net/manual/en/timezones.asia.php Quote Link to comment https://forums.phpfreaks.com/topic/223765-how-to-convert-datetime-to-another-datetimezone-in-php/#findComment-1156626 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.