1
vote
2answers
25 views

PHP strtotime giving wrong date with GMT conversion? [closed]

I'm reading a Last-Modified header which as a string is "Mon, 21 May 2013 09:10:30 GMT" and trying to compare that to my local time() (New Zealand). But I've just noticed that strtotime is making the ...
1
vote
3answers
98 views

How to show GMT Time based upon country in php

I want to show GMT Timebased upon country. If suppose, some user from india, register into my application i should append GMT time as GMT +5 into my database. If suppose, some other user from france, ...
0
votes
1answer
23 views

using offsets with gmdate or like function

Recently it came to our attention that our DB was using multiple timezones to record data, and or pass data around, and because of that data started going out of sync. So recently we made some changes ...
0
votes
0answers
39 views

Change data automatically on summertime/wintertime

I am currently working on a Wordpress website for a local fish store. In the footer I have put a table which includes the opening hours. But in the winter they close their store half an hour earlier. ...
0
votes
1answer
203 views

CodeIgniter local timezone to GMT

i need help with multi timezone website in codeigniter. config.php: $config['time_reference'] = 'gmt'; date_default_timezone_set('UTC'); now when user want to see event(website is for events) it ...
-2
votes
2answers
104 views

Time comparison in php [duplicate]

Possible Duplicate: strtotime date weird result I am trying to compare two times for an attendance system, i am trying to get the accurate time for Arkansas,USA but im not being to able to ...
0
votes
1answer
173 views

GMT Offset to PHP timezone

Is it possible to have something like? $offset = -05:00; $timezone = getTimeZone($offset); //return America/New_York date_default_timezone_set($timezone); How about the DST(Day Saving Light) ...
0
votes
0answers
61 views

Clarification on GMT, UTC and getOffset()

The server is configured on UTC. I have a date + timezone and I want to get its offset, so I was thinking of using getOffset(). But then my problem: are UTC and GMT "exactly" the same? From my ...
0
votes
1answer
106 views

GMT time and mysql NOW() is giving 2 minutes difference

When i was checking the GMT time here it was 05:40:00, at the same time i ran the below query in mysql, SET time_zone='+00:00'; // to get GMT time SELECT NOW(); It was 05:37:50 from above query. So ...
0
votes
1answer
224 views

Google Calendar Auto Timezone

I'm doing a simple website for a client that includes a Google Calendar for displaying of upcoming events. The problem here is that I can't figure out how to get the timezone for the calendar to ...
0
votes
1answer
49 views

Get the timestamp's timezone

I'd like to get the timezone of a time, which the same time as the local time, but in an other GMT territory. There's what i thought will work: ceil((strtotime($scores[$i]['date'].' ...
0
votes
5answers
801 views

Php Convert time in gmt format

I have this string 2012-06-27 16:17:06 and I want to convert it to GMT format. How can I do that? Thanks a lot.
1
vote
1answer
171 views

PHP `date()` Different than Unix `date` Command

I searched around but couldn't find exactly what I'm looking for. I have a PHP Settings page where Admins from my site are able to select an hour of the day for a daily Cron Job script to execute. In ...
0
votes
0answers
138 views

PHP Date / GMT Weirdness

Either I'm losing my mind, or I've not got the faintest idea what I'm doing. I'm leaning towards the latter. I'm trying to convert this: 1316826000, which I'm pretty confident should be Sat, 24 Sep ...
0
votes
1answer
1k views

Converting GMT time to local time using timezone offset, not timezone identifier

It's pretty easy to convert a given GMT date into local time if you're given the timezone identifier from this list in PHP: http://www.php.net/manual/en/timezones.php For example, you can do this ...
2
votes
1answer
210 views

Gmt php or UTC C# equivalence through SOAP

is C# DateTime.UtcNow and php date("c") are equivalent I doubt because when I soap both I get from C# : <dateDebutAction ...
0
votes
1answer
128 views

PHP convert weekdays and time (hour) to GMT representation

I have a web application that allows users to select to have a certain operation performed at a specific hour on a specific weekday (ex: 7pm Friday) -- recurring every weekday. My users are located in ...
0
votes
3answers
181 views

Handing International Time in PHP

Just a quick question on working with International Timezones & GMT. I have an app that needs to send out an email at a certain time (6am) for every person internationally based on their ...
2
votes
3answers
99 views

how to know the local date without javascript

Hello I'm coding a chatting box and I'd like to stamp the current local time of the user next to its posted message. So I could use javascript : var date = new Date(); and send a string form of the ...
0
votes
1answer
715 views

EST/EDT to GMT conversion and date comparison

I need to convert a given GMT date and time (YYYY-MM-DD HH:MM) into such a string YYYYMMDD representing Eastern coast date. Do you think the code below is OK? $date='2011-11-07 04:30'; $date.='-4 ...
1
vote
1answer
59 views

Working out starting time when user has chosen the gmt time

I have a loop that checks to see if a user's daily game has started based on time(). The event starting time is based on the GMT time that the user has chosen. My problem is that I can't seem to ...
0
votes
2answers
3k views

How to convert datetime to GMT in php

Alright, so i'm not sure if im converting user input time to GMT properly. I will be having users across several timezones entering "events" and they will have to be able to see "how long untill" or ...
1
vote
2answers
540 views

php “countdown til” and “since time” GMT UTC time function

I'm working with a function I found to do this, but I'm trying to make it work with a GMT utc timestamp: EDIT: Maybe my issue is with how i'm "converting" the user input time to GMT... I was doing ...
2
votes
3answers
865 views

PHP file modified time use GMT offset setting to report correct time

I'm currently reporting file modified time like so: $this->newScanData[$key]["modified"] = filemtime($path."/".$file); $modifiedtime = date($date_format." ".$time_format, ...
10
votes
3answers
11k views

PHP daylight saving time detection

I need to send an email to users based wherever in the world at 9:00 am local time. The server is in the UK. What I can do is set up a time difference between each user and the server's time, which ...
0
votes
1answer
507 views

Get last Sunday within a range of two dates (GMT, DST)

I'm trying to get the last Sunday between two week numbers - in order to avoid DST. IN ORDER WORDS: Start a range of time - from the last Sunday in March to the last Sunday in October. This is my ...
0
votes
1answer
861 views

Removing an hour from PHP (FROM_UNIXTIME)

Could you please advice how to remove an hour from unixtime. I have a unixtime and i need to remove an extra hour before converting to normal time. Could you please advice how to do this? Also, is ...
0
votes
1answer
526 views

Setting time according to timezone from database

I want to make a system which displays time dependant on the timezone in a particular country. E.g. a table in my database contains country names in one field, and in the column next to it, it will ...
1
vote
1answer
329 views

how to make datetime class to work with DST and without DST in php?

I have wrote the code where i am using DateTime class which also converts dst following countries time into GMT format. But i want the functionality where i need the DateTime class should work on ...
1
vote
2answers
3k views

how to convert php date formats to GMT and vice versa?

i am new to php. i want to write a function where i need user to input date in any date format including DST,into GMT format and again later back into the original entered format.please any body help ...
1
vote
4answers
446 views

How to properly store GMT offset?

So recently I stored all my locations with their GMT offset as integers (-12 to 12) and everything was ok, but now I have to add more locations, and I noticed that some of them are in timezones with ...
2
votes
3answers
748 views

What is the difference between the current timestamp in the GMT time zone and the current timestamp in your local time zone?

This is a sample question i found at ZEND php certificate practice test, the correct answer of this question is: " There is no difference between the current time in any time zone—the current time is ...
2
votes
1answer
263 views

PHP Timezones getTransitions trustworthy?

Have you ever had any issue with PHP timezones conversions through the getTransitions function? I am trying to convert an Argentinian date into GMT. If I look into the array of transitions, I get: ...
0
votes
2answers
198 views

How to display all datetime on website in user's GMT locale?

I store all datetime values as unix timestamp. Registered users can set personal GMT locale in their profile. What should I do to display all datetime on website in user's GMT locale? Thank you
2
votes
5answers
609 views

validate time GMT offset and striping with regex?

// create a string $string = '+7'; // try to match the beginning of the string if(preg_match("{-15 to +12}", $string)) { // if it matches we echo this line return {strip all the + sign} ...
1
vote
1answer
994 views

Web Service to Get Current UTC Time?

I'm building a PHP web application and need to know what the current date/time is. I cannot depend on the server's setting. Any web service I can use? I know there will be some delay accessing the ...
1
vote
2answers
2k views

HOW TO GET: Time Zone Setting of FTP Server?

I'm using PHP's ftp_rawlist function to get a listing of files and their associated last-modified date/time. For my purposes, I need to know the time zone (or offset) of the the last-modified ...
4
votes
2answers
466 views

How to Convert to UTC

I'm getting dates & times from various sources (e.g. file's date/time from FTP server, email's date/tiem received, etc.) and need to store them all as UTC (so they all have a common reference). ...
9
votes
4answers
3k views

UNIX timestamp always in GMT?

UNIX timestamp always in GMT? I tried to run php function time() and when I tried to convert the unix timestamp from the time() function, the output is not similar to the computer time. Thank You
2
votes
5answers
5k views

What's the recommended way to store current time using PHP and MySQL?

My initial approach was: $current = time(); // save this to column CURRENT_TIME with column type VARCHAR //retrieve it like this $retrieved = mysql_query(....) //assume query for getting the stored ...
2
votes
1answer
2k views

How to determine UTC offset from server timezone?

I've found many examples about UTC tables and php date methods to convert it, but I still miss a simple way after got server date, to converting it into an user timezone selection on my web page. On ...
0
votes
3answers
167 views

gmt or without gmt

this might be stupid question, but ill ask anyway. do i really need to implement gmt on site to get proper timestamp on a post? well im building a site like twitter. my feeds are working fine and ...
0
votes
2answers
814 views

Which php date and time tools to use for GMT offsetting

It appears there are many ways to approach date and time massaging in php. I usually am only every dealing with local time. Today, I need to work in UTC. I am querying against an API, the data they ...