Go Back   CodingForums.com > :: Server side development > PHP

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 01-19-2013, 06:33 AM   PM User | #1
cancer10
Regular Coder

 
Join Date: Jun 2006
Location: India
Posts: 795
Thanks: 210
Thanked 2 Times in 2 Posts
cancer10 can only hope to improve
Question Managing timezones for different users

Hi

I have a website where I have many users coming from different countries. Users can schedule a task based on their timezone. Now there is a cron running on the server after every min, the cron executes a script which checks if there are any scheduled task of any user and if so it does the needful.

Since my server is based in the US, the script executed by the cron considers the timezone of the US. What do I have to do in my script that will execute the user's task based on user's timezone instead of server's timezone?

Thanks in advance for any ideas
__________________
http://outlineme.com/cancer10
cancer10 is offline   Reply With Quote
Old 01-19-2013, 07:04 AM   PM User | #2
sir pannels
Regular Coder

 
Join Date: Jun 2002
Posts: 905
Thanks: 23
Thanked 5 Times in 5 Posts
sir pannels is an unknown quantity at this point
Hi cancer10,

When your users signup or create a task, make sure you ask them for their timezone, and save it in database.. then in your CRON triggered PHP script just set the user's timezone when the script runs... at the top of the script:

PHP Code:
date_default_timezone_set("Europe/Berlin"); 
Here is a list of all the supported time zones http://php.net/manual/en/timezones.php

Cheers,
sir pannels is offline   Reply With Quote
Old 01-19-2013, 08:37 AM   PM User | #3
cancer10
Regular Coder

 
Join Date: Jun 2006
Location: India
Posts: 795
Thanks: 210
Thanked 2 Times in 2 Posts
cancer10 can only hope to improve
Thanks for your reply

is there any function in php that will tell me the time difference between the server timezone and the user's timezone?

For example how much difference in hours is US timezone and Japan timezone?
__________________
http://outlineme.com/cancer10
cancer10 is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 11:29 PM.


Advertisement
Log in to turn off these ads.