Tagged Questions

8
votes
2answers
641 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 ...
5
votes
4answers
577 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
4
votes
2answers
284 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). ...
2
votes
3answers
63 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 ...
2
votes
1answer
100 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: ...
2
votes
5answers
357 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} ...
2
votes
1answer
900 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 ...
1
vote
1answer
34 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 ...
1
vote
2answers
139 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 ...
1
vote
3answers
203 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, ...
1
vote
1answer
179 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
3answers
236 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 ...
1
vote
1answer
812 views

MySQL default time format UTC or GMT?

Hi I'm so confused with this UTC and GMT I'm inserting in MySQL table as ex column "event_date" like "2010-07-01 23:50:00" (datetime) my client asking an option in front end as GMT +1 GMT +2 GMT -1 ...
1
vote
1answer
454 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
526 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 ...
0
votes
3answers
43 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 ...
0
votes
1answer
64 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 ...
0
votes
2answers
171 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 ...
0
votes
1answer
271 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
253 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
150 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 ...
0
votes
2answers
426 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 ...
0
votes
4answers
191 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 ...
0
votes
2answers
103 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
0
votes
5answers
1k 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 ...
0
votes
3answers
126 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
608 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 ...