View Full Version : How do I check for DST?
Boofo
11-01-2004, 08:36 AM
Can someone please tell me why this doesn't work and how to fix it?
if (!$post['dstonoff']) {
$post['tzoffset']--;
}else{
// DST is on, add an hour
$post['tzoffset']++;
}
It seems it wants to grab whatever I am checking for first and not go any further. I always have to change this whenever DST goes off or on. ;)
Boofo
11-02-2004, 08:54 PM
Nobody can help me with this? ;)
Boofo
11-15-2004, 09:49 PM
I'll try one more time asking for help. ;)
Natch
11-16-2004, 02:33 AM
The wy vB does it is via a test in Javascript at the bottom of the page, and if th etest is true, it runs a cron which updates the user profile (I think?) - it's not by any means a simple thing...
Boofo
11-16-2004, 04:18 AM
The wy vB does it is via a test in Javascript at the bottom of the page, and if th etest is true, it runs a cron which updates the user profile (I think?) - it's not by any means a simple thing...
The code above works if you only use one of them. Then it works right. But if you try to "else" them, then it only picks the first one, no matter which one it is. How can I get it to work with "else"?
Natch
11-16-2004, 04:30 AM
Is dstonoff a TRUE/FALSE item? the only way that (!$post['dstonoff']) would never return the first (or second) clause is if $post['dstonoff'] is never FALSE (or TRUE)...
Boofo
11-22-2004, 08:41 AM
Is dstonoff a TRUE/FALSE item? the only way that (!$post['dstonoff']) would never return the first (or second) clause is if $post['dstonoff'] is never FALSE (or TRUE)...
All I know for sure is that whichever one I put first always works. How would I check for it then? ;)
Natch
11-23-2004, 02:15 AM
tryif ($post['dstonoff']===TRUE)
{ // DST is on, add an hour
$post['tzoffset']++;
}
else
{
$post['tzoffset']--;
}
Boofo
11-23-2004, 02:42 AM
tryif ($post['dstonoff']===TRUE)
{ // DST is on, add an hour
$post['tzoffset']++;
}
else
{
$post['tzoffset']--;
} I'll try this and let you know. ;)
Should there be 3 equal signs?
Natch
11-23-2004, 02:47 AM
Yeah: it's a more exact test...
Boofo
11-23-2004, 02:59 AM
So, this would work, too then?if ($post['dstonoff']===FALSE)
{ // DST is off, subtract an hour
$post['tzoffset']--;
}
else
{ // DST is on, add an hour
$post['tzoffset']++;
}
Natch
11-23-2004, 03:07 AM
Should do mate
Boofo
11-23-2004, 06:15 AM
I think I fixed it. Here's what I have now and it seems to follow whatever you have your DST setting at in your User CP. ;)
$post['tzoffset'] = $post['timezoneoffset'];
if ($post['dstonoff'])
{
// DST is on, add an hour
$post['tzoffset']++;
if (substr($post['tzoffset'], 0, 1) != '-')
{
// recorrect so that it has + sign, if necessary
$post['tzoffset'] = '+' . $post['tzoffset'];
}
}
Natch
11-24-2004, 02:48 AM
Good work mate: I knew you'd get it sorted ;)
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.